ListViewのリストアイテムにスペースを追加しようとしています。私はdividerとdividerHeightを使ってみましたが、これはうまくいかないようです。何が間違っている可能性がありますか?AndroidスタジオのListViewでデバイダが機能しない
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/activity_export_logistics"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="com.example.orume.export.ExportLogisticsActivity">
<include layout="@layout/toolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"></include>
<ListView
android:id="@+id/ListView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
android:divider="@null"
android:dividerHeight="16dp"
android:layout_marginTop="65dp"
android:background="#fff"></ListView>
</RelativeLayout>
divider.xml
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="line" >
<stroke
android:width="20dp"
android:color="#dd0d0d" />
</shape>
'android:divider =" @ null "' –
の代わりに 'android:divider =" @ drawable/divider "を書く@WhiteHox:Check-> android:divider =" @ null "色を付け加える。 – AndiGeeky
android:divider = "@ layout/divider" –