0

我需要 ListView 或 GridView 中按下的项目的默认浅蓝色。 view.setBackgroundResource(android.R.drawable.list_selector_background);不起作用。

谢谢你。

4

2 回答 2

0

You can set the ListSelector drawable in your layout xml:

<ListView
    ...
    android:listSelector="#ff0000"
/>

or by calling:

yourList.setSelector(Color.BLACK);
于 2013-03-24T11:10:50.600 回答
0

Use

view.setBackgroundResource(android.R.color.yourcolor);
于 2013-03-24T11:11:45.773 回答