fragment_set_friend_role.xml
2.38 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<?xml version="1.0" encoding="utf-8"?>
<layout>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
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" />
<FrameLayout
android:layout_width="match_parent"
android:layout_height="50dp"
android:background="@color/color_F7B054">
<TextView
android:layout_width="260dp"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:text="对已选用户设置角色,确立亲情关系"
android:textColor="@color/white"
android:textSize="16sp" />
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="right"
android:clickable="true"
android:gravity="center"
android:paddingRight="10dp">
<ImageView
android:layout_width="25dp"
android:layout_height="25dp"
android:background="@drawable/icon_set_role_close" />
</LinearLayout>
</FrameLayout>
<!-- -->
<LinearLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1">
<android.support.v7.widget.RecyclerView
android:id="@+id/rv_friends_role"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</LinearLayout>
<Button
android:id="@+id/btn_next"
android:layout_width="match_parent"
android:layout_height="45dp"
android:layout_margin="30dp"
android:background="@drawable/selector_btn_green"
android:text="下一步"
android:textColor="@color/white"
android:textSize="17sp"
android:textStyle="bold" />
<!-- 结尾-->
</LinearLayout>
</layout>