如何使用 1dp 分隔线在列表视图内的每个框中添加填充我希望每个框都更大但
android:dividerHeight="10px"
android:divider="#FFCC00"
没有解决我的问题,因为它给了我粗线我只希望列表视图中的每个框都更大,有 1px 的线。我该怎么做?
<ListView
android:id="@+id/list_view2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignLeft="@+id/editText2"
android:layout_below="@+id/editText2"
android:background="#111"
android:choiceMode="singleChoice"
android:layout_marginTop="10dp"
android:dividerHeight="1px"
android:divider="#FFCC00"
>