美文网首页
ColorStateList的学习

ColorStateList的学习

作者: 吃葡萄皮不吐葡萄 | 来源:发表于2016-05-19 15:30 被阅读378次

在XML中编辑

Color State List Resource官方文档
官方文档中的示范代码:
在XML中编辑,XML文件保存于res/color/button_text.xml

<?xml version="1.0" encoding="utf-8"?>
<selector 
  xmlns:android="http://schemas.android.com/apk/res/android">    
  <item android:state_pressed="true"          
    android:color="#ffff0000"/> 
    <!-- pressed -->    
  <item android:state_focused="true"          
    android:color="#ff0000ff"/> 
  <!-- focused -->    
  <item android:color="#ff000000"/> 
  <!-- default -->
</selector>

在xml中应用

<Button
    android:layout_height="wrap_content"    
    android:layout_width="wrap_content"    
    android:background="@drawable/button" />

Color State List Resource所对应的Java类

相关文章

网友评论

      本文标题:ColorStateList的学习

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