fragment_personal_edit.xml 1.69 KB
<?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>