bashgid/android/res/layout/fragment_grid_page.xml

28 lines
1.0 KiB
XML
Raw Normal View History

2015-05-22 18:07:16 +00:00
<?xml version="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:orientation="vertical" >
2015-06-25 19:00:11 +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-25 19:00:11 +00:00
android:layout_gravity="center_horizontal"
android:indeterminate="true" />
2015-07-05 11:03:52 +00:00
<fishrungames.bashgid.StaticGridView
2015-05-22 18:07:16 +00:00
android:id="@+id/gridView"
android:layout_width="match_parent"
android:layout_height="match_parent"
2015-06-25 19:00:11 +00:00
android:gravity="bottom"
android:horizontalSpacing="@dimen/grid_view_horizontal_spacing"
android:numColumns="@integer/grid_columns"
2015-07-05 11:03:52 +00:00
android:verticalSpacing="@dimen/grid_view_vertical_spacing"
android:isScrollContainer="false"
android:stretchMode="columnWidth" />
2015-06-25 19:00:11 +00:00
2015-05-22 18:07:16 +00:00
</LinearLayout>