我在相对布局中添加了一个可滚动的列表视图,但它在右侧和底部添加了一个边距。有没有人知道如何删除它?
<RelativeLayout layout_width="match_parent" layout_height="match_parent">
<LinearLayout android:id="@+id/listheader" layout_width="match_parent" layout_height="wrap_content">
</LinearLayout>
<ListView android:id="@+id/list" android:layout_width="match_parent"
android:layout_below="@id/listheader" android:listSelector="@drawable/item_background"
android:divider="@drawable/divider"
android:scrollbars="vertical" android:layout_height="match_parent"
android:layout_alignParentBottom="true">
</RelativeLayout>
答案 0 :(得分:1)
通过删除android:scrollbars =“vertical”
解决了这个问题