bashgid/android/res/layout/fragment_main_page.xml

23 lines
775 B
XML
Raw Normal View History

2014-10-23 16:58:47 +00:00
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
2014-10-24 04:31:52 +00:00
android:layout_margin="0dp"
2014-11-12 03:34:24 +00:00
android:background="@color/bkg2"
2014-10-23 16:58:47 +00:00
android:orientation="vertical"
tools:context="fishrungames.bashgid.MainPageFragment" >
2014-11-05 05:00:15 +00:00
<ListView
android:id="@+id/listView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
2014-11-12 03:34:24 +00:00
android:layout_marginLeft="16dp"
android:layout_marginRight="16dp"
2014-11-05 05:00:15 +00:00
android:divider="@drawable/transparent"
2014-11-12 03:34:24 +00:00
android:dividerHeight="18dp"
android:paddingBottom="16dp" >
2014-11-05 05:00:15 +00:00
</ListView>
2014-10-23 16:58:47 +00:00
</LinearLayout>