Guest User

Untitled

a guest
Oct 19th, 2017
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.96 KB | None | 0 0
  1. <FrameLayout
  2.     android:layout_width="fill_parent"
  3.     android:layout_height="fill_parent">
  4.     <LinearLayout
  5.         android:id="@+id/layout"
  6.         android:layout_width="fill_parent"
  7.         android:layout_height="fill_parent"
  8.         android:orientation="vertical">
  9.         <GridView
  10.             android:id="@+id/main"
  11.             android:layout_height="0dp"
  12.             android:layout_weight="1"
  13.             android:layout_width="match_parent"
  14.             android:numColumns="1"
  15.             android:stretchMode="columnWidth"
  16.                 android:gravity="center">
  17.         </GridView>
  18.         <TextView
  19.             android:layout_height="fill_parent"
  20.             android:id="@+id/empty"
  21.             android:textAppearance="?android:attr/textAppearanceLarge"
  22.             android:text="@string/empty"
  23.             android:layout_width="wrap_content"
  24.             android:gravity="center">
  25.         </TextView>
  26.     </LinearLayout>
  27.     <ProgressBar
  28.         android:id="@+id/progress"
  29.         android:layout_width="wrap_content"
  30.         android:layout_height="wrap_content"
  31.         android:layout_gravity="center">
  32.     </ProgressBar>     
  33. </FrameLayout>
Add Comment
Please, Sign In to add comment