91 lines
3.4 KiB
XML
91 lines
3.4 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="270dp"
|
|
android:layout_height="wrap_content"
|
|
android:background="@drawable/background_d5_white"
|
|
android:orientation="vertical">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginLeft="12dp"
|
|
android:layout_marginRight="12dp"
|
|
android:orientation="vertical">
|
|
|
|
<TextView
|
|
android:id="@+id/album"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginLeft="12dp"
|
|
android:layout_marginTop="15dp"
|
|
android:gravity="center|left"
|
|
android:text="@string/input_content"
|
|
android:textColor="@color/textColor"
|
|
android:textSize="16sp"
|
|
android:visibility="visible" />
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginLeft="6dp"
|
|
android:layout_marginTop="9dp"
|
|
android:layout_marginRight="6dp">
|
|
|
|
<EditText
|
|
android:id="@+id/et_back_text"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="84dp"
|
|
android:background="@color/transparent"
|
|
android:gravity="left|top"
|
|
android:hint="@string/input_content_but"
|
|
android:maxLength="200"
|
|
android:padding="6dp"
|
|
android:text=""
|
|
android:textColor="@color/black1"
|
|
android:textSize="13sp" />
|
|
</LinearLayout>
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="6dp"
|
|
android:layout_marginBottom="15dp"
|
|
android:gravity="center"
|
|
android:orientation="horizontal">
|
|
|
|
<LinearLayout
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:background="@drawable/bg_gray_line_10_5"
|
|
android:gravity="center">
|
|
|
|
<TextView
|
|
android:id="@+id/tv_cancel"
|
|
android:layout_width="84dp"
|
|
android:layout_height="30dp"
|
|
android:gravity="center"
|
|
android:text="@string/cancel"
|
|
android:textColor="@color/gray_B1B1B1"
|
|
android:textSize="14sp" />
|
|
</LinearLayout>
|
|
|
|
<LinearLayout
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginLeft="9dp"
|
|
android:background="@drawable/bg_maincolor_line_10_5"
|
|
android:gravity="center">
|
|
|
|
<TextView
|
|
android:id="@+id/tv_assign"
|
|
android:layout_width="132dp"
|
|
android:layout_height="30dp"
|
|
android:gravity="center"
|
|
android:text="@string/send"
|
|
android:textColor="@color/white"
|
|
android:textSize="14sp" />
|
|
</LinearLayout>
|
|
</LinearLayout>
|
|
</LinearLayout>
|
|
|
|
</LinearLayout> |