<?xml version="1.0" encoding="utf-8"?>
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:orientation="vertical"
|
android:padding="16dp">
|
|
<EditText
|
android:id="@+id/edit_nickname"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:hint="输入新昵称"
|
android:inputType="text"
|
android:maxLines="1" />
|
|
</LinearLayout>
|