这是我的列表视图:
<ListView
android:id="@+id/left_drawer"
android:layout_width="240dp"
android:layout_height="match_parent"
android:layout_gravity="start"
android:background="#fff"
android:cacheColorHint="#00000000"
android:choiceMode="singleChoice"
android:dividerHeight="1px"
android:divider="@drawable/list_item_divider" >
这是我的分隔符list_item_divider
<shape
xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="line">
<stroke
android:width="10dp"
android:color="#8F8F8F"
android:dashWidth="10dp"
android:dashGap="10dp" />
</shape>
我在 listview 中看不到任何分隔符。 请帮助。
答案 0 :(得分:1)
现在问题在于您的可绘制外观
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" >
<size android:height="3dip" />
<solid android:color="#8F8F8F" />
</shape>
更改并尝试