Мне нужно изменить цвет разделителя в списке. Код, который я использую для выполнения этого, приведен ниже:
<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 пиксель. Что я делаю неправильно?
Обновление: ListItem
<?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>