• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

android - 如何在Android中设置listView项目之间的空间

[复制链接]
菜鸟教程小白 发表于 2022-8-1 01:21:17 | 显示全部楼层 |阅读模式 打印 上一主题 下一主题

我尝试在 listView 上使用 marginBottom 在 listView 项目之间腾出空间,但这些项目仍然连接在一起。

甚至可能吗?如果是,是否有具体的方法来做到这一点?

我的代码如下

<LinearLayout
android:id="@+id/alarm_occurences"
android:layout_width="fill_parent" 
androidrientation="vertical"
android:layout_height="fill_parent"
android:background="#EEEEFF"
xmlns:android="http://schemas.android.com/apk/res/android">

<ListView
android:id="@+id/occurences"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
/>
</LinearLayout>

我的自定义列表项:
<com.android.alarm.listItems.AlarmListItem
xmlns:android="http://schemas.android.com/apk/res/android"
androidrientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent" 
android:background="@drawable/alarm_item_background"
android:layout_marginBottom="10dp"    
>
<CheckedTextView     
    android:id="@android:id/text1"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:gravity="center_vertical"
    android:checkMark="?android:attr/listChoiceIndicatorMultiple"
    android:textSize="20sp"
    android:textStyle="bold"
    android:typeface="serif"
    android:padding="10dp"

/>

</com.android.alarm.listItems.AlarmListItem>

在这种情况下,如何在列表项之间设置间距?



Best Answer-推荐答案


@Asahi 几乎一针见血,但我只是想为以后可能通过谷歌漂浮在这里的任何人添加一些 XML:

<ListView android:id="@+id/MyListView"
  android:layout_height="match_parent"
  android:layout_width="match_parent"
  android:divider="@android:color/transparent"
  android:dividerHeight="10.0sp"/>

出于某种原因,“10”、“10.0”和“10sp”等值都被 Android 拒绝为 dividerHeight。值(value)。它需要一个浮点数和一个单位,例如“10.0sp”。正如@Goofyahead 所指出的,您还可以为此值使用与显示无关的像素(即“10dp”)。

关于android - 如何在Android中设置listView项目之间的空间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4984313/

回复

使用道具 举报

懒得打字嘛,点击右侧快捷回复 【右侧内容,后台自定义】
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

关注0

粉丝2

帖子830918

发布主题
阅读排行 更多
广告位

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap