activity_import_backup.xml 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout
  3. android:layout_width="fill_parent"
  4. android:layout_height="fill_parent"
  5. android:background="?attr/color_background_primary"
  6. android:orientation="vertical" android:tag="layout/activity_import_backup_0" xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto">
  7. <include
  8. android:id="@+id/toolbar"
  9. layout="@layout/toolbar" />
  10. <LinearLayout
  11. android:visibility="gone"
  12. android:id="@+id/in_progress"
  13. android:layout_width="match_parent"
  14. android:layout_height="match_parent"
  15. android:gravity="center">
  16. <ProgressBar
  17. android:layout_width="wrap_content"
  18. android:layout_height="wrap_content"
  19. android:layout_gravity="center" />
  20. </LinearLayout>
  21. <android.support.design.widget.CoordinatorLayout
  22. android:id="@+id/coordinator"
  23. android:layout_width="match_parent"
  24. android:layout_height="match_parent"
  25. android:background="?attr/color_background_primary">
  26. <android.support.v7.widget.RecyclerView
  27. android:id="@+id/list"
  28. android:layout_width="match_parent"
  29. android:layout_height="match_parent"
  30. android:background="?attr/color_background_primary"
  31. android:orientation="vertical"
  32. app:layoutManager="android.support.v7.widget.LinearLayoutManager" />
  33. </android.support.design.widget.CoordinatorLayout>
  34. </LinearLayout>