gpt4 book ai didi

android - 无法删除 ListView 中的最后一个分隔符

转载 作者:行者123 更新时间:2023-11-29 01:43:16 25 4
gpt4 key购买 nike

我有一个 ListView,它必须填满父布局中的整个可用空间。我想删除最后一个分隔线,这是我的代码:

<?xml version="1.0" encoding="utf-8"?>

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >

<ListView
android:id="@+id/listView"
android:layout_height="0dp"
android:layout_weight="1"
android:layout_width="fill_parent"
android:choiceMode="singleChoice"
android:listSelector="@drawable/popup_table_row"
android:footerDividersEnabled="false"
android:headerDividersEnabled="false" />

<Button
android:id="@+id/cancelbutton"
android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:text="@string/cancel"
style="@style/ButtonTextBold"
android:background="@drawable/blue_button" />

</LinearLayout>

android:headerDividersEnabled="false" 什么都不做。最后一个分隔线没有被移除。我尝试使用 RelativeLayout 实现布局并将 listView 的高度设置为 fill_parent,但它也无济于事。

最佳答案

使用 ListView 属性 android:divider="@null"

关于android - 无法删除 ListView 中的最后一个分隔符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23082954/

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