Android选择器 - 文字颜色

时间:2011-10-05 14:16:10

标签: android

按钮的背景基于定义为:

的选择器设置
 <selector xmlns:android="http://schemas.android.com/apk/res/android" android:dither="true">
      <item android:state_checked="true" android:drawable="@drawable/checked" />
      <item android:state_focused="true" android:drawable="@drawable/focused" />
      <item android:drawable="@drawable/normal"/>
   </selector>

如何根据按钮的状态(按下/聚焦)定义按钮的文本颜色?这不起作用:

    <selector xmlns:android="http://schemas.android.com/apk/res/android" android:dither="true">
      <item android:state_checked="true" android:drawable="@drawable/checked" android:textColor="#CCCCCCCC"/>
   </selector>

0 个答案:

没有答案