bashgid/android/res/layout/fragment_main_page.xml

24 lines
851 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"
android:layout_marginBottom="@dimen/large_margin"
android:layout_marginLeft="@dimen/large_margin"
android:layout_marginRight="@dimen/large_margin"
2014-11-05 05:00:15 +00:00
android:divider="@drawable/transparent"
android:dividerHeight="@dimen/large_divider_height" >
2014-11-05 05:00:15 +00:00
</ListView>
2014-10-23 16:58:47 +00:00
</LinearLayout>