5

所以我通过适配器使用自定义列表视图,在我的 Nexus 7 上一切看起来都很棒,但在我的 HTC Incredible 2 上,我遇到了背景颜色发生变化的问题。这是我的带有 cacheColorHint 集的 XML 文件。我也试过#AA00000。有什么建议么?我还尝试通过 setCacheColorHint 在活动中设置它,但还没有任何效果。

 <?xml version="1.0" encoding="utf-8"?>
 <LinearLayout
 xmlns:android="http://schemas.android.com/apk/res/android"
 android:orientation="horizontal"     
 android:layout_width="fill_parent"
 android:layout_height="fill_parent"
 android:padding="10dp"
 android:background="#AA000000"
 android:cacheColorHint="#00000000">

 <ImageView android:id="@+id/ExhibitListIcon"
 android:contentDescription="Exhibit List Icon"
 android:layout_width="wrap_content"
 android:layout_height="fill_parent"
 android:gravity="center_vertical"
 android:layout_marginRight="15dp"
 android:layout_marginTop="5dp"
 android:layout_marginBottom="5dp" />

 <TextView android:id="@+id/ExhibitListTitle"
 android:layout_width="fill_parent"
 android:layout_height="fill_parent"
 android:gravity="center"
 android:textStyle="bold"
 android:textSize="22dp"
 android:textColor="#FFFFFF"
 android:layout_marginTop="5dp"
 android:layout_marginBottom="5dp" />

 </LinearLayout>
4

3 回答 3

21

您能否尝试在声明 Listview 的 xml 中设置 cachecolorhint 而不是 LinearLayout :

在布局文件中,使用:

android:cacheColorHint="#0000"

或在 java 代码中,使用

listView.setCacheColorHint(Color.TRANSPARENT);

希望这可以帮助!!

于 2012-12-02T20:29:48.887 回答
6

将以下行添加到您的列表视图:

android:cacheColorHint="@android:color/transparent"

于 2013-07-06T08:56:08.173 回答
2
listView.setCacheColorHint(Color.TRANSPARENT);
于 2013-06-01T17:17:30.313 回答