美文网首页Android开发
Android 选择器 selector用法

Android 选择器 selector用法

作者: _曦语 | 来源:发表于2018-10-29 15:02 被阅读9次

设置view点击后切换背景并且保留住选中状态应该怎么办?

1.在drawable下面新建文件bg_music_type

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:drawable="@drawable/weeebot_background_red" android:state_pressed="true"/>
    <item android:drawable="@drawable/weeebot_background_red" android:state_selected="true"/>
    <item android:drawable="@drawable/weeebot_background" android:state_enabled="true"/>

</selector>

注意:

  • weeebot_background_red 是选中的时候的背景图片
  • weeebot_background 是未选中的时候的背景图片

在此处设置的是Fragment的背景,同理ImageView也需要设置

<FrameLayout
    android:id="@+id/test1"
    android:layout_width="53dp"
    android:layout_height="53dp"
    android:layout_marginEnd="30dp"
    android:clickable="true"
    android:background="@drawable/bg_music_type"
    android:onClick="onClick"
    android:focusable="true">

    <ImageView
        android:layout_width="34dp"
        android:layout_height="30.58dp"
        android:layout_gravity="center"
        android:focusable="false"
        android:clickable="false"
        android:background="@mipmap/music_laohu"/>

</FrameLayout>                       

注意一定要设置:

  • android:clickable="true"
  • android:focusable="true"

否则无效的

当然了上面的selector直接设置background即可。

然后就可以看到按钮在被点击的时候出现weeebotbackgroundred此背景的效果,不过怎么保留住这个点击效果呢??

需要在改布局的引用java代码里面设置这样的一句话


@Override
    public void onClick(View v) {
        switch (v.getId()) {
            case R.id.test1:
                binding.test1.setSelected(true);
                break;
          }
    }

这样就大功告成了!

相关文章

网友评论

    本文标题:Android 选择器 selector用法

    本文链接:https://www.haomeiwen.com/subject/gembtqtx.html