如何设置列表活动的背景颜色? 我可以设置列表视图项的背景颜色,但不能设置活动视图的孔(请参见图像底部的黑色部分)。我怎样才能做到这一点?
ListActivity XML如下所示:
<?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="wrap_content"
android:padding="5dp"
android:background="@color/darkbluelogo" >
<ImageView android:id="@+id/list_image"
android:layout_width="48dip"
android:layout_height="48dip"
android:contentDescription="@id/list_image"
/>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:padding="5dp"
android:background="@color/darkbluelogo"
android:scrollingCache="false"
android:cacheColorHint="#00000000" >
<TextView
android:id="@+id/title"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@+id/title" >
</TextView>
<TextView
android:id="@+id/datetime"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@+id/datetime" >
</TextView>
</LinearLayout>
</LinearLayout>
这就是它在设备上的显示方式:
SOLUTION:
我必须添加样式XML并将其添加到AndroidManifest.xml中的活动
答案 0 :(得分:6)
在包含listview的xml文件中将layout_height
设置为fill_parent
。并根据需要设置该xml文件的背景。
编辑:在这种情况下,您可以使用主题设置背景
像这样<style name="MyTheme">
<item name="android:background">@color/darkbluelogo</item>
</style>
并将此主题应用于清单文件中的列表活动。
<activity
android:theme="MyTheme"
答案 1 :(得分:3)
以下代码显示了如何设置ListActivity的背景颜色。
getListView().setCacheColorHint(Color.rgb(36, 33, 32));
getListView().setBackgroundColor(Color.rgb(36, 33, 32));
答案 2 :(得分:1)
您已经给出了主线性布局的高度
android:layout_height="wrap_content"
制作
android:layout_height="fill_parent"
它会改变整个背景的颜色。
答案 3 :(得分:1)
嗨,如果你使用默认的android列表视图,那么添加以下内容:
setListAdapter(new ArrayAdapter<String>(this,
android.R.layout.simple_list_item_1, CONTENT));
final ListView listView = getListView();
listView.setBackgroundColor(Color.parseColor("#4597CD"));
或者如果你已经在xml布局中设置了listview,那么:
<ListView
android:id="@+id/listviewID"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="#4597CD"
android:cacheColorHint="@color/darkbluelogo"
/>
答案 4 :(得分:0)
检查ListView属性的宽度和高度都应该是“fill_parent”..
<ListView
android:id="@+id/listCategory"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@color/darkbluelogo"
android:cacheColorHint="@color/darkbluelogo"
/>
答案 5 :(得分:0)
super.getListView().setBackgroundColor(getResources().getColor(R.color.red));