我的列表视图是透明的。我改了但它仍然具有轻微的透明度。如何禁用它,因为文本不可见。

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@drawable/sportsbg">

<ListView
    android:id="@+id/list"
    android:layout_width="fill_parent"
    android:layout_height="310dp"
    android:layout_alignParentBottom="true"
    android:background="#FFffffff"
    android:divider="@color/lists_divider"
    android:dividerHeight="1dp"
    android:paddingLeft="10dp"
    android:paddingRight="10dp"
    android:paddingTop="0dp" />



</RelativeLayout>

最佳答案

您可以将列表视图的背景设置为

android:background="#FFFFFF"


在哪里

android:background="#FFffffff"


指定一个Alpha。

08-05 13:53
查看更多