<?xml version="1.0" encoding="utf-8"?>
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
android:background="@color/register_gray"
|
android:orientation="vertical">
|
|
<View
|
android:id="@+id/v_status_bar"
|
android:layout_width="match_parent"
|
android:layout_height="15dp"
|
android:background="@color/main_bg_color" />
|
|
<include layout="@layout/navigation_top_bar" />
|
|
<LinearLayout
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:layout_marginTop="15dp"
|
android:background="@color/white"
|
android:orientation="vertical">
|
|
<ImageView
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_gravity="center_horizontal"
|
android:layout_marginTop="30dp"
|
android:src="@drawable/ic_order_appeal_top" />
|
|
<TextView
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:layout_marginLeft="20dp"
|
android:layout_marginTop="20dp"
|
android:gravity="left"
|
android:text="下单后无奖金?丢单?"
|
android:textColor="@color/black2"
|
android:textSize="20sp"
|
android:textStyle="bold" />
|
|
<TextView
|
android:id="@+id/textView4"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:layout_marginLeft="20dp"
|
android:layout_marginRight="20dp"
|
android:layout_marginTop="15dp"
|
android:gravity="left"
|
android:layout_marginBottom="15dp"
|
android:text="@string/order_appeal_hint"
|
android:textColor="@color/black2"
|
android:textSize="16sp" />
|
</LinearLayout>
|
|
<LinearLayout
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:layout_marginTop="15dp"
|
android:background="@color/white"
|
android:orientation="vertical">
|
|
<TextView
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:layout_marginLeft="20dp"
|
android:layout_marginRight="20dp"
|
android:layout_marginTop="15dp"
|
android:gravity="center"
|
android:text="申诉订单号"
|
android:textColor="@color/black2"
|
android:textSize="16sp" />
|
|
<EditText
|
android:id="@+id/et_order_id"
|
android:layout_width="match_parent"
|
android:layout_height="48dp"
|
android:layout_marginLeft="15dp"
|
android:layout_marginRight="15dp"
|
android:layout_marginTop="15dp"
|
android:background="@drawable/shape_login_select"
|
android:gravity="center_vertical"
|
android:hint="请输入你的订单号"
|
android:inputType="number"
|
android:paddingLeft="8dp"
|
android:paddingRight="8dp"
|
android:textSize="14sp" />
|
|
<TextView
|
android:id="@+id/tv_refer_appeal"
|
android:layout_width="match_parent"
|
android:layout_height="36dp"
|
android:layout_marginLeft="12dp"
|
android:layout_marginRight="12dp"
|
android:layout_marginTop="50dp"
|
android:background="@drawable/shape_go_search"
|
android:gravity="center"
|
android:text="提交申诉"
|
android:textColor="@color/white"
|
android:textSize="16sp" />
|
</LinearLayout>
|
</LinearLayout>
|