我看到新蜂窝有一个画廊样本。 它会向您展示如何通过添加
来更改所选文本视图的颜色android:background="?android:attr/activatedBackgroundIndicator"
到你的textview
但是我列表的行不仅是文本视图,而且是一个视图集合 线性布局。
要获得与蜂窝图库列表选择相同的行为,我厌倦了设置此线性布局的背景但它不起作用。选定的行不会将颜色更改为蓝色。
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="fill_parent"
android:layout_height="fill_parent" android:background=" android:attr/activatedBackgroundIndicator">
<BUNCH OF OTHER VIEWS/>
</LinearLayout>
先谢谢了。
答案 0 :(得分:6)
您忘记了?
属性值前面的android:background
。
另请注意,activatedBackgroundIndicator
仅适用于Android 3.0及更高版本。