I have this listview
main.xml
<ListView
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:id="@+id/praias"
android:layout_above="@+id/adView"
/>
Iwaswonderingiftheiteminthislistviewtookupthefullwidth,itisalreadyfillparentsoIthinkitshouldbeoccupyingtheentirescreen.HowdoInottogetthesewhitespaceintheborders
itens.xml
<?xmlversion="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent" android:layout_height="match_parent"
android:background="#ffffff"
android:orientation="vertical">
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceMedium"
android:text="Bertioga"
android:textColor="#000000"
android:gravity="center"
android:id="@+id/nomePraia"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true" />
<ImageView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:id="@+id/fotoPraia"
android:layout_below="@+id/nomePraia"
android:layout_centerHorizontal="true"
android:layout_above="@+id/bt" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceSmall"
android:text="Coemçar a descrição ...."
android:id="@+id/descricao"
android:maxLength="400"
android:textColor="#000000"
android:layout_alignTop="@+id/btFavorito"
android:layout_toEndOf="@+id/btFavorito"
android:gravity="left"
android:layout_toStartOf="@+id/bt"
android:layout_toRightOf="@+id/btFavorito"
android:layout_toLeftOf="@+id/bt" />
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<Button
style="?android:attr/buttonStyleSmall"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/btVerMais"
android:id="@+id/btVerMais"
android:background="#fff"
android:textColor="@color/wallet_link_text_light"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true" />
</RelativeLayout>
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<ImageButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/btFavorito"
android:background="@drawable/ic_action_favorite"
android:layout_alignTop="@+id/bt"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/bt"
android:background="@drawable/ic_action_overflow"
android:layout_alignParentBottom="true"
android:layout_alignParentRight="true"
android:layout_alignParentEnd="true" />
</RelativeLayout>