fragment_device_manager.xml
1.34 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<?xml version="1.0" encoding="utf-8"?>
<layout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/color_F2F2F2"
android:orientation="vertical">
<com.qmuiteam.qmui.widget.QMUITopBar
android:id="@+id/topbar"
android:layout_width="match_parent"
android:layout_height="?attr/qmui_topbar_height" />
<android.support.v7.widget.RecyclerView
android:id="@+id/rv_menu"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:overScrollMode="never" />
<View
android:layout_width="match_parent"
android:layout_height="1dp"
android:background="@color/line_15" />
<TextView
android:layout_width="match_parent"
android:layout_height="60dp"
android:background="@drawable/selectable_item_white"
android:gravity="center"
android:text="删除设备"
android:clickable="true"
android:textColor="@color/color_EB3D3F"
android:textSize="15sp" />
</LinearLayout>
</layout>