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"
|
2015-07-08 00:11:08 +00:00
|
|
|
android:paddingBottom="@dimen/large_margin"
|
|
|
|
android:paddingLeft="@dimen/large_margin"
|
|
|
|
android:paddingRight="@dimen/large_margin"
|
2015-07-06 00:44:07 +00:00
|
|
|
android:background="@color/bkg2"
|
2015-05-22 18:07:16 +00:00
|
|
|
android:orientation="vertical" >
|
2015-06-25 19:00:11 +00:00
|
|
|
<ProgressBar
|
|
|
|
android:id="@+id/progressBar"
|
|
|
|
style="?android:attr/progressBarStyleLarge"
|
2015-07-02 22:36:06 +00:00
|
|
|
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-08 00:11:08 +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"
|
2015-07-02 22:36:06 +00:00
|
|
|
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"
|
2015-07-06 00:44:07 +00:00
|
|
|
android:background="@color/bkg2"
|
2015-07-05 11:03:52 +00:00
|
|
|
android:stretchMode="columnWidth" />
|
|
|
|
|
2015-06-25 19:00:11 +00:00
|
|
|
|
2015-05-22 18:07:16 +00:00
|
|
|
|
|
|
|
</LinearLayout>
|