62 lines
2.5 KiB
XML
62 lines
2.5 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
<com.ubt.jimu.widgets.NavigationBarView
|
|
android:id="@+id/nbv_bar"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
app:nbv_mode="left_right"
|
|
app:nbv_title="@string/diy_simple"/>
|
|
<TextView
|
|
android:textSize="@dimen/theme_13sp"
|
|
android:textColor="@color/theme_txt"
|
|
android:id="@+id/tv_ti"
|
|
android:paddingLeft="18dp"
|
|
android:layout_width="@dimen/theme_input_width"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="24.5dp"
|
|
android:text="@string/diy_simple_name"
|
|
android:layout_below="@+id/nbv_bar"
|
|
android:layout_centerHorizontal="true"/>
|
|
<RelativeLayout
|
|
android:id="@+id/rl_title"
|
|
android:paddingLeft="18dp"
|
|
android:layout_below="@+id/tv_ti"
|
|
android:layout_centerHorizontal="true"
|
|
style="@style/theme_input_view_style">
|
|
<com.ubt.jimu.widgets.ClearEditText
|
|
android:id="@+id/et_title"
|
|
android:maxLines="1"
|
|
android:maxLength="20"
|
|
style="@style/theme_edit_text_style"/>
|
|
</RelativeLayout>
|
|
<TextView
|
|
android:textSize="@dimen/theme_13sp"
|
|
android:textColor="@color/theme_txt"
|
|
android:id="@+id/tv_desc"
|
|
android:paddingLeft="18dp"
|
|
android:layout_width="@dimen/theme_input_width"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="20dp"
|
|
android:text="@string/diy_simple_intro"
|
|
android:layout_below="@+id/rl_title"
|
|
android:layout_centerHorizontal="true"/>
|
|
<EditText
|
|
android:textSize="@dimen/theme_13sp"
|
|
android:textColor="@color/theme_input_txt"
|
|
android:gravity="top"
|
|
android:layout_gravity="center_horizontal"
|
|
android:id="@+id/et_intro"
|
|
android:background="@drawable/bg_common_input_large"
|
|
android:padding="15dp"
|
|
android:layout_width="@dimen/theme_input_width"
|
|
android:layout_height="@dimen/diy_creative_desc"
|
|
android:layout_marginTop="5dp"
|
|
android:hint="@string/diy_simple_desc"
|
|
android:maxLength="@integer/input_content_length"
|
|
android:layout_below="@+id/tv_desc"
|
|
android:layout_centerHorizontal="true"
|
|
android:inputType="textMultiLine"/>
|
|
</RelativeLayout>
|