我有一个 ListView,每个项目都有一个 TextView。
我想更改项目 TextView 颜色,例如,当用户单击该项目时。
有什么想法、例子或教程吗?
谢谢
使用状态列表。
例如,在您的可绘制文件夹中创建一个名为 bg_states.xml 的文件:
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item
android:state_selected="true"
android:drawable="@color/blue" ></item>
<item
android:state_pressed="true"
android:drawable="@color/blue" ></item>
<item
android:drawable="@color/black" />
</selector>
并将其定义为 TextView 的背景:
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/bg_states"
试试看
v.setBackgroundColor(R.Color.Red);
在你的onClick
方法中