【发布时间】:2011-09-26 13:08:15
【问题描述】:
我需要更改列表视图中的分隔线颜色。下面引用了我用来完成此操作的代码:
<ListView
android:id="@+id/restaurant_list_widget"
android:layout_width="1px"
android:layout_height="1px"
android:layout_weight="1" android:background="@drawable/list"
android:divider="#FFFFFF"
android:dividerHeight="4px">
</ListView>
我仍然得到一个黑色 1 像素宽的分隔线。我做错了什么?
更新:列表项
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:padding="5dp"
android:background="@color/list_background">
<TextView
android:id="@+id/restaurant_list_item_name"
android:layout_marginBottom="4dp"
android:textStyle="bold"
android:textSize="15dp"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:textColor="#fff"
android:text="Restaurant Name Goes Here"></TextView>
<TextView
android:id="@+id/restaurant_list_item_detail"
android:textSize="10dp"
android:layout_width="fill_parent"
android:layout_height="fill_parent"></TextView>
</LinearLayout>
【问题讨论】:
-
可以参考这个answer
-
您能否发布另一个指定列表项的 xml。检查你在那里设置的背景颜色。
标签: android