<ListView android:id="@+id/rv_list" android:layout_width="match_parent" android:layout_height="0dp" android:layout_marginBottom="10dp" android:divider="#9F9C9C" android:background="@drawable/item_border_background" app:layout_constraintBottom_toBottomOf="parent" app:layout_constraintTop_toBottomOf="@+id/areaState" />怎么设置item的边框格式
时间: 2024-02-18 18:59:16 浏览: 75
你可以通过定义一个 `item_border_background.xml` 文件来设置 `ListView` 的子项边框格式,具体步骤如下:
1. 在 `res/drawable` 目录下创建一个名为 `item_border_background.xml` 的文件,文件内容如下:
```xml
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<corners android:radius="5dp" />
<stroke android:width="1dp" android:color="#9F9C9C" />
<solid android:color="#FFFFFF" />
</shape>
```
上面的代码定义了一个矩形形状,拥有圆角和边框,背景颜色为白色。
2. 在 `ListView` 的布局文件中,将 `android:background` 属性设置为 `@drawable/item_border_background`,即:
```xml
<ListView
android:id="@+id/rv_list"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_marginBottom="10dp"
android:divider="#9F9C9C"
android:background="@drawable/item_border_background"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintTop_toBottomOf="@+id/areaState" />
```
这样就可以设置 `ListView` 的子项边框格式了。你可以根据需要修改 `item_border_background.xml` 文件中的属性来调整边框样式。
阅读全文