23 lines
790 B
XML
23 lines
790 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content">
|
|
|
|
<TextView
|
|
android:id="@+id/name_view"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentLeft="true"
|
|
android:layout_centerVertical="true"
|
|
android:text="名称"/>
|
|
|
|
<EditText
|
|
android:inputType="text"
|
|
android:imeOptions="actionDone"
|
|
android:layout_toRightOf="@id/name_view"
|
|
android:layout_alignParentRight="true"
|
|
android:id="@+id/input_view"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content" />
|
|
|
|
</RelativeLayout> |