如何更改 ListView 的单个单元格的背景?我在java中写道:
n_list = new ListView(this);
n_list.setBackgroundDrawable(getResources().getDrawable(R.drawable.list_pressed));
这种方式改变了整个列表的背景。当我按下一个单元格时,它会更改所有单元格的背景。
list_pressed.xml
在可绘制
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_focused="true"
android:drawable="@drawable/listviewpress" />
<item android:state_pressed="true"
android:drawable="@drawable/listviewpress" />
<item
android:drawable="@drawable/listview" />
</selector>
我怎样才能解决这个问题?提前致谢 :)