52 lines
2.2 KiB
XML
52 lines
2.2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:background="@color/translucent"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content">
|
|
<RelativeLayout
|
|
android:gravity="center"
|
|
android:layout_gravity="center"
|
|
android:id="@+id/cvContent"
|
|
android:background="@drawable/shape_white_20"
|
|
android:layout_width="@dimen/diy_dialog_width"
|
|
android:layout_height="@dimen/diy_dialog_height">
|
|
<com.ubt.jimu.widgets.EditTextWithDel
|
|
android:textSize="@dimen/theme_13sp"
|
|
android:textColor="@color/theme_input_txt"
|
|
android:textColorHint="@color/theme_input_hint"
|
|
android:gravity="center_vertical"
|
|
android:id="@+id/edt_robot_name"
|
|
android:background="@drawable/shape_ebebeb_20"
|
|
android:padding="@dimen/dp_10"
|
|
android:paddingLeft="44dp"
|
|
android:focusable="true"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="@dimen/theme_input_height"
|
|
android:layout_marginLeft="30dp"
|
|
android:layout_marginTop="@dimen/diy_dialog_input_top"
|
|
android:layout_marginRight="30dp"
|
|
android:hint="@string/diy_input_name"
|
|
android:maxLines="1"
|
|
android:lines="1"
|
|
android:singleLine="true"
|
|
android:maxLength="@integer/input_title_length"
|
|
android:layout_centerHorizontal="true"
|
|
android:inputType="text"
|
|
android:imeOptions="flagNoExtractUi"/>
|
|
<ImageView
|
|
android:id="@+id/lv_add"
|
|
android:layout_width="143.5dp"
|
|
android:layout_height="95.5dp"
|
|
android:src="@drawable/diy_popup_img_add"
|
|
android:scaleType="centerCrop"
|
|
android:layout_centerInParent="true"/>
|
|
<com.ubtech.view.widget.UButton
|
|
android:id="@+id/btn_sure"
|
|
android:layout_marginBottom="13dp"
|
|
android:text="@string/btn_diy_create"
|
|
android:layout_alignParentBottom="true"
|
|
android:layout_centerHorizontal="true"
|
|
style="@style/btn_blue_middle_style"/>
|
|
</RelativeLayout>
|
|
</FrameLayout>
|