最佳答案
我做了一个按钮,改变背景绘制在不同的状态,如下所示:
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_pressed="true" android:drawable="@drawable/btn_location_pressed" /> <!-- pressed -->
<item android:state_focused="true" android:drawable="@drawable/btn_location_pressed"/> <!-- focused -->
<item android:drawable="@drawable/btn_location"/> <!-- default -->
</selector>
这里的问题是,我也试图改变textColor,因为我做的可绘制的,但我不能。我已经尝试了android:textColor和android:color,但第一个不工作,而秒改变我的背景。
下面的代码是我的布局的一部分。关于文本颜色,它只适用于正常状态的文本颜色,因此不会在按下时将其更改为白色
<Button android:id="@+id/location_name"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:paddingTop="5dp"
android:background="@drawable/location"
android:textSize="15sp"
android:textColor="@color/location_color"
android:textColorHighlight="#FFFFFF"
/>
有人知道吗?