Android系统.设置ListView的背景图片

Gar*_*rgo 3 android android-emulator android-layout android-2.2-froyo android-xml

以下代码几乎与我想要实现的相同.

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
  xmlns:android="http://schemas.android.com/apk/res/android"
  android:orientation="vertical"
  android:layout_width="match_parent"
  android:layout_height="match_parent"
  android:background="@drawable/bg">
    <ListView android:layout_height="wrap_content" android:id="@+id/levelList" android:layout_width="match_parent" android:layout_alignParentLeft="true"></ListView>
</RelativeLayout>
Run Code Online (Sandbox Code Playgroud)

我想为整个ListView设置背景图像.此代码的问题是背景图像在滚动时闪烁或消失.

我使用sdk 2.2和模拟器来运行程序.

Rei*_*ier 5

您需要android:cacheColorHint="#00000000"在ListView上进行设置.这将设置cacheColorHint透明(注意额外的2 0年代后#000000),并解决您的问题.或者,您可以将cacheColorHint设置为@android:color/transparent.

您应该在ListView背景上阅读此页面.