1
+ <?xml version =" 1.0" encoding =" utf-8" ?>
2
+ <android .support.design.widget.CoordinatorLayout
3
+ xmlns : android =" http://schemas.android.com/apk/res/android"
4
+ android : layout_width =" match_parent"
5
+ android : layout_height =" match_parent"
6
+ xmlns : app =" http://schemas.android.com/apk/res-auto"
7
+ xmlns : tools =" http://schemas.android.com/tools"
8
+ android : orientation =" vertical"
9
+ android : background =" ?attr/backgroundColor" >
10
+
11
+ <include
12
+ layout =" @layout/empty_directory_state" />
13
+
14
+ <android .support.v4.widget.SwipeRefreshLayout
15
+ android : id =" @+id/swipe_refresh_layout"
16
+ android : layout_width =" 600dp"
17
+ android : layout_height =" match_parent"
18
+ android : layout_gravity =" center_horizontal"
19
+ android : layout_above =" @+id/bottom_bar" >
20
+
21
+ <android .support.v7.widget.RecyclerView
22
+ android : layout_width =" match_parent"
23
+ android : layout_height =" match_parent"
24
+ android : id =" @+id/recycler_view"
25
+ android : clipToPadding =" false"
26
+ android : paddingBottom =" 54dp"
27
+ app : layoutManager =" LinearLayoutManager"
28
+ tools : listitem =" @layout/fragment_file_explorer_item" />
29
+ </android .support.v4.widget.SwipeRefreshLayout>
30
+
31
+ <include
32
+ android : id =" @+id/move_bar"
33
+ android : layout_width =" 600dp"
34
+ android : layout_height =" 56dp"
35
+ android : orientation =" horizontal"
36
+ android : layout_gravity =" bottom|center"
37
+ android : background =" @color/colorPrimary"
38
+ android : elevation =" 8dp"
39
+ android : visibility =" gone"
40
+ android : clickable =" true"
41
+ android : focusable =" true"
42
+ layout =" @layout/move_bar" />
43
+ </android .support.design.widget.CoordinatorLayout>
0 commit comments