在listview..transparent列表视图后面显示main_activity的背景图片。我试图制作listview android的背景:background =“@ color / transparent”android:cacheColorHint =“#00000000” 但没有变化
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="{relativePackage}.${activityClass}"
android:background="@drawable/ajad" >
<ListView
android:id="@+id/android:list"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:cacheColorHint="@android:color/transparent"
>
</ListView>
答案 0 :(得分:0)
您是否尝试将背景直接放入ListView而不是RelativeLayout?
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="{relativePackage}.${activityClass}" >
<ListView
android:id="@+id/android:list"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:cacheColorHint="@android:color/transparent"
android:background="@drawable/ajad" >
</ListView>
</RelativeLayout>