123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- <?xml version="1.0" encoding="utf-8"?>
-
- <LinearLayout
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- android:background="?attr/color_background_primary"
- 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">
- <include
- android:id="@+id/toolbar"
- layout="@layout/toolbar" />
- <LinearLayout
- android:visibility="gone"
- android:id="@+id/in_progress"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:gravity="center">
- <ProgressBar
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_gravity="center" />
- </LinearLayout>
- <android.support.design.widget.CoordinatorLayout
- android:id="@+id/coordinator"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="?attr/color_background_primary">
- <android.support.v7.widget.RecyclerView
- android:id="@+id/list"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="?attr/color_background_primary"
- android:orientation="vertical"
- app:layoutManager="android.support.v7.widget.LinearLayoutManager" />
- </android.support.design.widget.CoordinatorLayout>
- </LinearLayout>
-
|