我的 ListView 有以下代码:
<ListView android:id="@android:id/list" xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="match_parent"
android:scrollbarStyle="insideOverlay"
android:background="@android:color/white"
android:cacheColorHint="@android:color/white"
android:fadingEdgeLength="16dip" />
我的活动中有主题“Holo.Light.DarkActionBar”。我尝试将 ListView 的样式更改为相同的样式,但我没有得到正确的颜色。在 Eclipse 的布局编辑器中,它显示如下:
但在我的手机上,我得到了这个:
如果我将主题应用于活动,为什么它不会改变颜色?