我有一个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
,但它也无济于事。
答案 0 :(得分:1)
使用列表视图属性android:divider =&#34; @ null&#34;