gpt4 book ai didi

android - 如何在 ListView 中的列表项底部添加边框

转载 作者:行者123 更新时间:2023-11-29 17:49:57 30 4
gpt4 key购买 nike

我有一个 ListView ,我想为每个列表项添加一个底部边框,以便它充当所有单元格之间的分隔线。

这是我现在的 ListView 。

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:descendantFocusability="blocksDescendants"
android:background="#FFFFFF"
>

....
.....
</LinearLayout>

最佳答案

 <ListView 
android:layout_width="match_parent"
android:layout_height="match_parent"
android:divider="@color/red"
android:dividerHeight="1px">
</ListView>

并且颜色值在 colors.xml 或 strings.xml 中:

<color name="red">#FF0000</color>

附言我故意使用 px check here

关于android - 如何在 ListView 中的列表项底部添加边框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23599003/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com