111 lines
4.4 KiB
XML
111 lines
4.4 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:id="@+id/submit"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical"
|
|
android:background="@drawable/bg_theme">
|
|
|
|
<ImageView
|
|
android:id="@+id/fan"
|
|
android:layout_centerVertical="true"
|
|
android:layout_marginTop="@dimen/dp_58"
|
|
android:layout_marginLeft="@dimen/dp_28"
|
|
android:layout_width="@dimen/dp_40"
|
|
android:layout_height="@dimen/dp_31"
|
|
android:src="@mipmap/return_lefts"
|
|
android:padding="@dimen/dp_10"
|
|
android:background="@null"
|
|
android:scaleType="fitXY" />
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_centerInParent="true"
|
|
android:layout_marginLeft="@dimen/dp_38"
|
|
android:layout_marginTop="@dimen/dp_8"
|
|
android:text="投诉"
|
|
android:textColor="#000"
|
|
android:textSize="@dimen/sp_23" />
|
|
|
|
<androidx.cardview.widget.CardView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="@dimen/dp_134"
|
|
android:layout_marginLeft="@dimen/dp_38"
|
|
android:layout_marginTop="@dimen/dp_10"
|
|
android:layout_marginRight="@dimen/dp_38"
|
|
app:cardBackgroundColor="#ffffff"
|
|
app:cardCornerRadius="@dimen/dp_14">
|
|
|
|
<EditText
|
|
android:id="@+id/text_body"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:background="@null"
|
|
android:gravity="left"
|
|
android:hint="请输入您的意见和反馈"
|
|
android:padding="@dimen/dp_10"
|
|
android:textSize="@dimen/sp_13"
|
|
android:textColor="#000"/>
|
|
</androidx.cardview.widget.CardView>
|
|
|
|
<TextView
|
|
android:id="@+id/ts"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginLeft="@dimen/dp_49"
|
|
android:layout_marginTop="@dimen/dp_11"
|
|
android:text="*我们将在1-7个工作日内受理"
|
|
android:textColor="#ff999999"
|
|
android:textSize="@dimen/sp_12" />
|
|
<LinearLayout
|
|
android:layout_marginTop="@dimen/dp_10"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical"
|
|
android:id="@+id/reply_box"
|
|
android:visibility="gone">
|
|
<TextView
|
|
android:layout_marginLeft="@dimen/dp_38"
|
|
android:layout_marginRight="@dimen/dp_38"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_centerInParent="true"
|
|
android:text="客服回复"
|
|
android:textColor="#000"
|
|
android:textSize="@dimen/sp_23" />
|
|
<androidx.cardview.widget.CardView
|
|
android:layout_marginLeft="@dimen/dp_38"
|
|
android:layout_marginRight="@dimen/dp_38"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="@dimen/dp_134"
|
|
android:layout_marginTop="@dimen/dp_10"
|
|
app:cardBackgroundColor="#ffffff"
|
|
app:cardCornerRadius="@dimen/dp_14"
|
|
android:layout_marginBottom="@dimen/dp_3">
|
|
<EditText
|
|
android:id="@+id/reply_body"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:background="@null"
|
|
android:gravity="left"
|
|
android:hint="请输入您的意见和反馈"
|
|
android:padding="@dimen/dp_10"
|
|
android:textSize="@dimen/sp_13" />
|
|
</androidx.cardview.widget.CardView>
|
|
</LinearLayout>
|
|
<Button
|
|
android:id="@+id/tijiao"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="@dimen/dp_42"
|
|
android:layout_alignParentBottom="true"
|
|
android:layout_centerHorizontal="true"
|
|
android:layout_marginLeft="@dimen/dp_38"
|
|
android:layout_marginTop="@dimen/dp_27"
|
|
android:layout_marginRight="@dimen/dp_38"
|
|
android:layout_marginBottom="@dimen/dp_22"
|
|
android:background="@drawable/bg_btn"
|
|
android:text="提交投诉"
|
|
android:textColor="#fff" />
|
|
</LinearLayout> |