bashgid/android/res/layout/fragment_photo_album_page.xml

32 lines
1.1 KiB
XML
Raw Normal View History

2015-02-18 03:23:07 +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"
android:layout_margin="0dp"
2015-07-05 11:03:52 +00:00
android:background="@color/black"
2015-02-18 03:23:07 +00:00
android:orientation="vertical"
tools:context="fishrungames.bashgid.MainPageFragment" >
<ListView
android:id="@+id/listView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
2015-07-05 11:03:52 +00:00
android:layout_gravity="center_horizontal"
android:layout_marginLeft="@dimen/large_margin"
android:layout_marginRight="@dimen/large_margin"
2015-07-05 11:03:52 +00:00
android:divider="@color/black"
android:dividerHeight="@dimen/small_divider_height" >
2015-02-18 03:23:07 +00:00
</ListView>
2015-06-27 15:09:56 +00:00
<ProgressBar
android:id="@+id/progressBar"
style="?android:attr/progressBarStyleLarge"
android:layout_width="@dimen/progress_bar_size"
android:layout_height="@dimen/progress_bar_size"
2015-06-27 15:09:56 +00:00
android:layout_gravity="center_horizontal"
android:indeterminate="true" />
2015-02-18 03:23:07 +00:00
</LinearLayout>