fragment_user_personal.xml
1.48 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
<?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">
<!--<data>
<variable
name="liLayoutManager"
type="android.support.v7.widget.LinearLayoutManager" />
</data>
-->
<RelativeLayout
android:id="@+id/main_view"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:id="@+id/persion_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<include
android:id="@+id/personalIncludeLayout"
layout="@layout/user_toolbar_title" />
<android.support.v7.widget.RecyclerView
android:id="@+id/lv_personal"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:divider="@null"
android:fastScrollEnabled="true"
android:scrollbars="none"
/>
</LinearLayout>
<ImageView
android:id="@+id/back_selector"
android:layout_width="30dp"
android:layout_height="30dp"
android:layout_marginLeft="@dimen/_20px"
android:layout_marginTop="@dimen/_28px"
android:src="@drawable/btn_return" />
</RelativeLayout>
</layout>