38 lines
1.4 KiB
XML
38 lines
1.4 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:orientation="vertical" android:layout_width="match_parent"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
tools:viewBindingIgnore="true"
|
|
android:layout_height="match_parent"
|
|
android:background="@color/white">
|
|
|
|
<RelativeLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="54dp"
|
|
android:layout_marginTop="@dimen/dp20"
|
|
android:background="@drawable/shape_f9fafc_bg_r14"
|
|
android:layout_marginHorizontal="@dimen/dp20">
|
|
<EditText
|
|
android:maxLength="10"
|
|
android:id="@+id/nick_name_edit_input"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="54dp"
|
|
android:background="@null"
|
|
android:hint="输入你的微信号"
|
|
android:text=""
|
|
android:textSize="14sp"
|
|
android:textColor="@android:color/black"
|
|
android:layout_marginLeft="16dp"/>
|
|
</RelativeLayout>
|
|
|
|
<Button
|
|
android:id="@+id/nick_name_edit_button_confirm"
|
|
android:layout_width="295dp"
|
|
android:layout_height="48dp"
|
|
android:layout_marginTop="80dp"
|
|
android:layout_gravity="center"
|
|
android:text="保存"
|
|
android:textSize="17sp"
|
|
android:enabled="true"/>
|
|
|
|
</LinearLayout> |