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

Android中的Selector的用法详解及实例

程序员文章站 2023-11-12 17:54:22
android中的selector的用法  ...

android中的selector的用法 

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

  </item>
</selector>

 在工作的时候,由于系统给出的控件不够美观,因此开发时领导常常要我更改下界面,用美工给的图片取代系统图片。开始时,我只是给按钮等设置一下背景图片,这样做虽然美观了,但界面看起来却比较死板,比如用户点击了按钮后,按钮没一点反应。于是我就再给控件添加上ontouch监听事件,按下后改变背景颜色,松手后再恢复原来颜色。但后来发现了selector这个利器,真是喜出望外,不用再添加ontouch监听事件了,用起来也方便灵活。不得不说,多和其他开发人员交流技术经验等还是很有必要的,特别是像我这样独自负责一个app开发的。      

      android的selector要在 drawable 下配置。

      其中,selector可以设置的属性有:

android:state_pressed           如果是true,当被点击时显示该图片,如果是false没被按下时显示默认。

android:state_focused           如果是true,获得焦点时显示;如果是false没获得焦点显示默认。

android:state_selected          如果是true,当被选择时显示该图片;是false未被选择时显示该图片。

android:state_checkable         如果值为true,当checkbox能使用时显示该图片;false,当checkbox不能使用时显示该图片。

android:state_checked           如果值为true,当checkbox选中时显示该图片;false,当checkbox为选中时显示该图片。

android:state_enabled           如果值为true,当该组件能使用时显示该图片;false,当该组件不能使用时显示该图片。
 
android:state_window_focused    如果值为true,当此activity获得焦点在最前面时显示该图片;false,当没在最前面时显示该图片

  这些属性值也可以叠加使用,比如:

        android:state_window_focused=”true”  android:state_pressed=”true”

    表明是非触摸模式下获得焦点并单击时的背景图片。

  一般来说,button控件只需要用 android:state_pressed就可以。比如,一个button控件的背景设置为:

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

  </item>
</selector>

这表明该button控件按下时,背景图片是bg_selected,其它情况下(没有被点击或者点击后松开等)背景图片为bg_unselect。
selector除了可以设置组件的背景颜色外,也可以设置文字的颜色。比如某个button控件被按下后,button上的文字颜色也发生改变。例如:

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android" >
  <item android:state_pressed="true" android:color="#ffffff"></item>
  <item android:color="#000000"></item>
</selector>

即该button控件的颜色为黑色,但按钮按下后,颜色会变成白色。松开后,颜色恢复为黑色。

以上可以在代码中这样设置:

<button
  android:layout_width="match_parent"
  android:layout_height="wrap_content"
  android:background="@drawable/btn_slector"
  android:text="abc"
  android:textcolor="@drawable/text_selector"
  />

除了selector外,还有一个shape,可以用来定制控件的图形效果,两者可以一起使用。

 感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!