26 lines
965 B
XML
26 lines
965 B
XML
<?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" >
|
|
<ProgressBar
|
|
android:id="@+id/progressBar"
|
|
style="?android:attr/progressBarStyleLarge"
|
|
android:layout_width="@dimen/progress_bar_size"
|
|
android:layout_height="@dimen/progress_bar_size"
|
|
android:layout_gravity="center_horizontal"
|
|
android:indeterminate="true" />
|
|
|
|
<GridView
|
|
android:id="@+id/gridView"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:gravity="bottom"
|
|
android:horizontalSpacing="@dimen/grid_view_horizontal_spacing"
|
|
android:numColumns="@integer/grid_columns"
|
|
android:verticalSpacing="@dimen/grid_view_vertical_spacing" >
|
|
|
|
</GridView>
|
|
|
|
</LinearLayout>
|