activity_photo_folder.xml 988 B

12345678910111213141516171819202122232425262728
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:background="@color/all_black"
  4. android:layout_width="match_parent"
  5. android:layout_height="match_parent">
  6. <include layout="@layout/navigationbar" />
  7. <ProgressBar
  8. android:layout_gravity="center"
  9. android:id="@+id/progress"
  10. android:layout_width="wrap_content"
  11. android:layout_height="wrap_content"
  12. android:layout_centerInParent="true" />
  13. <GridView
  14. android:gravity="center"
  15. android:id="@+id/grv_list_album"
  16. android:paddingTop="5dp"
  17. android:paddingBottom="5dp"
  18. android:layout_width="match_parent"
  19. android:layout_height="match_parent"
  20. android:horizontalSpacing="5dp"
  21. android:verticalSpacing="10dp"
  22. android:columnWidth="115dp"
  23. android:numColumns="auto_fit"
  24. android:layout_below="@+id/navigation_bar" />
  25. </RelativeLayout>