我知道我可以通过以下代码的一些变体动态设置 ListView 的背景颜色:
ListView mainListView;
mainListView = (ListView) findViewById( R.id.listView1 );
mainListView.setBackgroundColor(Color.BLACK);
但是,我想通过 XML 来做同样的事情。我没有任何运气地尝试了以下代码(它没有改变):
<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">
<ListView
android:id="@+id/listView1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
**android:background="#FFFFFF"**
android:layout_centerHorizontal="true"
android:layout_centerVertical="true" >
</ListView>
</RelativeLayout>
有谁知道通过 XML 更改 ListView 的背景颜色的简单方法?