码迷,mamicode.com
首页 > 其他好文 > 详细

复合状态样式

时间:2015-01-21 22:16:58      阅读:260      评论:0      收藏:0      [点我收藏+]

标签:

当按钮点击下去的时候是一种样式;
当鼠标松开的时候又是一种样式;

例子:
  1. <Button
  2. android:layout_width="wrap_content"
  3. android:layout_height="wrap_content"
  4. android:text="下一步"
  5. android:background="@drawable/button_selector" 注:如果@android:drawable/表示使用系统样式,@drawable/            表示使用自建drawable目录下的样式;
  6. />
点击时的样式:
button_selector.xml(放在drawable文件夹下)
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <selector xmlns:android="http://schemas.android.com/apk/res/android">
  3. <item android:state_pressed="true"
  4. android:drawable="@drawable/function_greenbutton_pressed" />
  5. <item android:state_focused="true"
  6. android:drawable="@drawable/function_greenbutton_pressed" />
  7. <item
  8. android:drawable="@drawable/function_greenbutton_normal" />
  9. </selector>







复合状态样式

标签:

原文地址:http://www.cnblogs.com/candledragle/p/4240092.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!