欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

[Android]【安卓】xml selector的使用

程序员文章站 2022-05-04 23:41:25
...

[Android]【安卓】xml selector

本篇博客已收录到我的安卓开发小结中——点击【安卓开发小结】
  • 新建一个left_drawable.xml文件
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item
        android:drawable="@mipmap/left_on"
        android:state_selected="true" />
    <item
        android:drawable="@mipmap/left_off"
        android:state_selected="false" />
</selector>
  • 在控件里使用这个xml
    <Button
        android:id="@+id/button"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:background="@drawable/left_drawable"/>
  • 在Java代码里更改
    @Bind(R.id.button)
    Button mButton;

    @OnClick(R.id.button)
    public void onSelectorClick(View view) {
        mButton.setSelected(true);
    }