69 lines
3.0 KiB
XML
69 lines
3.0 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
android:orientation="vertical"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
<include layout="@layout/action_bar_with_right_icon"/>
|
|
<com.google.android.material.textfield.TextInputLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="70dp"
|
|
android:layout_marginLeft="16dp"
|
|
android:layout_marginTop="16dp"
|
|
android:layout_marginRight="16dp"
|
|
app:errorTextAppearance="@style/TextInputLayoutError"
|
|
app:hintTextAppearance="@style/TextInputLayoutHint"
|
|
app:passwordToggleEnabled="false">
|
|
<EditText
|
|
android:textColorHint="#55cccccc"
|
|
android:gravity="center_vertical"
|
|
android:id="@+id/edtRobotName"
|
|
android:paddingLeft="@dimen/txt_padding_left"
|
|
android:paddingBottom="@dimen/abc_edit_text_inset_bottom_material"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:hint="项目名称"
|
|
android:singleLine="true"
|
|
android:maxLength="30"
|
|
android:imeOptions="flagNoExtractUi"/>
|
|
</com.google.android.material.textfield.TextInputLayout>
|
|
<com.google.android.material.textfield.TextInputLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginLeft="16dp"
|
|
android:layout_marginTop="16dp"
|
|
android:layout_marginRight="16dp"
|
|
android:minHeight="70dp"
|
|
app:errorTextAppearance="@style/TextInputLayoutError"
|
|
app:hintTextAppearance="@style/TextInputLayoutHint"
|
|
app:passwordToggleEnabled="false">
|
|
<EditText
|
|
android:textColorHint="#55cccccc"
|
|
android:gravity="center_vertical"
|
|
android:id="@+id/edtRobotDescription"
|
|
android:paddingLeft="@dimen/txt_padding_left"
|
|
android:paddingBottom="@dimen/abc_edit_text_inset_bottom_material"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:hint="项目简介"
|
|
android:maxLength="500"
|
|
android:imeOptions="flagNoExtractUi"/>
|
|
</com.google.android.material.textfield.TextInputLayout>
|
|
<androidx.legacy.widget.Space
|
|
android:layout_width="0dp"
|
|
android:layout_height="0dp"
|
|
android:layout_weight="1"/>
|
|
<LinearLayout
|
|
android:gravity="right"
|
|
android:orientation="horizontal"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="50dp"
|
|
android:layout_marginLeft="16dp"
|
|
android:layout_marginRight="16dp">
|
|
<Button
|
|
android:id="@+id/btnComplete"
|
|
android:layout_width="120dp"
|
|
android:layout_height="48dp"
|
|
android:text="@string/finish"/>
|
|
</LinearLayout>
|
|
</LinearLayout>
|