49 lines
1.8 KiB
XML
49 lines
1.8 KiB
XML
<?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"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
tools:context=".activity.ChangeNicknameActivity">
|
|
|
|
<data>
|
|
|
|
</data>
|
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content">
|
|
|
|
|
|
<com.xscm.moduleutil.widget.CustomTopBar
|
|
android:id="@+id/top_bar"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
app:layout_constraintTop_toTopOf="parent" />
|
|
|
|
<RelativeLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="@dimen/dp_32"
|
|
android:layout_marginStart="@dimen/dp_16"
|
|
android:layout_marginTop="@dimen/dp_16"
|
|
android:layout_marginEnd="@dimen/dp_16"
|
|
android:background="@drawable/bg_r10_white"
|
|
android:gravity="left|center"
|
|
app:layout_constraintTop_toBottomOf="@+id/top_bar">
|
|
|
|
|
|
<com.xscm.moduleutil.widget.ClearEditText
|
|
android:id="@+id/ed_nick_name"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:background="@null"
|
|
android:gravity="center|left"
|
|
android:hint="请输入昵称"
|
|
android:maxLength="10"
|
|
android:padding="@dimen/dp_7"
|
|
android:singleLine="true"
|
|
android:text=""
|
|
android:textColor="#333333"
|
|
android:textSize="@dimen/sp_12"
|
|
app:layout_constraintStart_toStartOf="parent" />
|
|
</RelativeLayout>
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
|
</layout> |