0

如何使用 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"
     >
4

2 回答 2

0

如果您想为列表视图中的项目提供填充,请使用

android:padding="1dp"

我建议不要使用 px (阅读 android 文档)

于 2013-10-04T06:01:47.337 回答
0

在 ListView 中使用填充

     android:paddingBottom="1dp"
于 2013-10-04T05:59:09.953 回答