fragment_personal_edit.xml
1.1 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">
<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">
<EditText
android:id="@+id/editText"
android:layout_width="match_parent"
android:layout_height="50dp"
android:visibility="gone"/>
<include
android:id="@+id/includeMobileLayout"
layout="@layout/mobile_keycode_layout"/>
<Button
android:id="@+id/submit"
android:layout_width="match_parent"
android:layout_height="50dp"
android:layout_alignParentBottom="true"
android:layout_marginBottom="200dp"
android:onClick="@{userPersonalEditFragment.onClick}"
android:text="提交" />
</RelativeLayout>
</layout>