在布局Android蜂窝上的activatedBackgroundIndicator

时间:2011-03-03 17:53:46

标签: android list layout background android-3.0-honeycomb

我看到新蜂窝有一个画廊样本。 它会向您展示如何通过添加

来更改所选文本视图的颜色
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>

先谢谢了。

1 个答案:

答案 0 :(得分:6)

您忘记了?属性值前面的android:background

另请注意,activatedBackgroundIndicator仅适用于Android 3.0及更高版本。