How do I add a 20px space between two listviews:
<ListView
android:minWidth="25px"
android:minHeight="25px"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:id="@+id/listStations" />
SPACER???
<ListView
android:minWidth="25px"
android:minHeight="25px"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:id="@+id/listSocial" />
It would suffice to set
paddingToporpaddingBottomto20pxon one of theListViews. Alternatively, you can create an empty view (for instance aTextViewwith no text, or as mentioned by @AljoshaBre just aView), and set itslayout_heightto20px.