fragment_personal_edit.xml
1.69 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
<?xml version="1.0" encoding="utf-8"?>
<layout xmlns:android="http://schemas.android.com/apk/res/android">
<data>
<import type="com.cnlive.gundam.user.fragment.UserPersonalEditFragment" />
<variable
name="userPersonalEditFragment"
type="UserPersonalEditFragment" />
</data>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/gray_bg"
android:paddingTop="10dp">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:background="@android:color/white">
<EditText
android:id="@+id/editText"
style="@style/LoginContentStyle"
android:layout_width="match_parent"
android:layout_height="50dp"
android:layout_marginLeft="11dp"
android:layout_marginRight="11dp"
android:visibility="gone" />
<include
android:id="@+id/includeMobileLayout"
layout="@layout/mobile_keycode_layout" />
</LinearLayout>
<Button
android:id="@+id/submit"
style="@style/LoginButtonStyle"
android:layout_width="match_parent"
android:layout_height="50dp"
android:layout_alignParentBottom="true"
android:layout_marginBottom="200dp"
android:onClick="@{userPersonalEditFragment.onClick}"
android:background="@drawable/user_btn_login"
android:text="提交" />
</RelativeLayout>
</layout>