activity_import_backup.xml

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