51 lines
2.2 KiB
XML
51 lines
2.2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:background="@color/bg_2E3B55"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
<com.ubt.jimu.widgets.TitleDiyView
|
|
android:id="@+id/td_title"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"/>
|
|
<TextView
|
|
android:textSize="@dimen/diy_input_text_size"
|
|
android:textColor="@color/bg_white"
|
|
android:id="@+id/tv_desc"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginLeft="@dimen/diy_input_left"
|
|
android:layout_marginTop="47px"
|
|
android:text="@string/diy_build_desc"
|
|
android:layout_below="@+id/td_title"/>
|
|
<EditText
|
|
android:textSize="@dimen/diy_input_text_size"
|
|
android:textColor="@color/txt_98A5B6"
|
|
android:gravity="top"
|
|
android:layout_gravity="center_horizontal"
|
|
android:id="@+id/et_intro"
|
|
android:background="@drawable/shape_white"
|
|
android:paddingLeft="@dimen/diy_input_padding_left"
|
|
android:paddingTop="24px"
|
|
android:paddingRight="@dimen/diy_input_padding_left"
|
|
android:paddingBottom="24px"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="@dimen/diy_input_height_2"
|
|
android:layout_marginLeft="@dimen/diy_input_left"
|
|
android:layout_marginTop="20px"
|
|
android:layout_marginRight="@dimen/diy_input_left"
|
|
android:hint="@string/diy_build_1"
|
|
android:maxLength="@integer/input_content_length"
|
|
android:layout_below="@+id/tv_desc"
|
|
android:inputType="textMultiLine"/>
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
android:id="@+id/ry_add"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginLeft="@dimen/diy_input_left"
|
|
android:layout_marginTop="@dimen/dp_20"
|
|
android:layout_marginRight="@dimen/diy_input_left"
|
|
android:layout_below="@+id/et_intro"
|
|
style="@style/scrollbar_recyclerView_none"/>
|
|
<include layout="@layout/layout_diy_bottom"/>
|
|
</RelativeLayout>
|