I am adding a scrollable listview to a relative layout but it’s adding a margin to the right and the bottom of it. Does anyone have an idea how to remove that?
<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>
solved it by removing android:scrollbars=”vertical”