<?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:orientation="vertical">
|
|
<View
|
android:id="@+id/v_status_bar"
|
android:layout_width="match_parent"
|
android:layout_height="15dp"
|
android:background="@color/top_bar_color" />
|
|
<FrameLayout
|
android:layout_width="match_parent"
|
android:layout_height="48dp"
|
android:background="@color/top_bar_color">
|
|
<TextView
|
android:id="@+id/help_tv_cancel"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_gravity="center_vertical"
|
android:drawableLeft="@drawable/ic_back_two"
|
android:drawablePadding="3dp"
|
android:gravity="center_vertical"
|
android:padding="8dp"
|
android:text="返回"
|
android:textColor="@color/white"
|
android:textSize="16sp" />
|
|
<TextView
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_gravity="center"
|
android:paddingBottom="6dp"
|
android:paddingTop="6dp"
|
android:text="帮助与反馈"
|
android:textColor="@color/white"
|
android:textSize="20sp" />
|
</FrameLayout>
|
|
<LinearLayout
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:layout_marginTop="76dp"
|
android:background="@color/white"
|
android:orientation="vertical">
|
|
<TextView
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_marginLeft="12dp"
|
android:paddingBottom="10dp"
|
android:paddingTop="18dp"
|
android:text="联系我们"
|
android:textSize="18sp" />
|
|
<View
|
android:layout_width="match_parent"
|
android:layout_height="1px"
|
android:layout_marginLeft="12dp"
|
android:layout_marginRight="12dp"
|
android:background="#DBDBDB" />
|
|
<RelativeLayout
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:paddingBottom="12dp"
|
android:paddingTop="12dp">
|
|
<ImageView
|
android:id="@+id/help_iv"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_centerVertical="true"
|
android:layout_marginLeft="14dp"
|
android:layout_marginRight="14dp"
|
android:src="@drawable/img_qq2" />
|
|
<TextView
|
android:id="@+id/help_tv1"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_alignParentTop="@id/help_iv"
|
android:layout_toRightOf="@id/help_iv"
|
android:text="QQ客服"
|
android:textColor="@color/black1"
|
android:textSize="16sp" />
|
|
<TextView
|
android:id="@+id/help_tv_num"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_below="@id/help_tv1"
|
android:layout_marginTop="4dp"
|
android:layout_toRightOf="@id/help_iv"
|
android:text="2100723373"
|
android:textColor="@color/text_color_small"
|
android:textSize="14sp" />
|
|
<TextView
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_alignBottom="@id/help_tv_num"
|
android:layout_toRightOf="@id/help_tv_num"
|
android:text="(长按可复制)"
|
android:textColor="#B9B7B8"
|
android:textSize="14sp" />
|
</RelativeLayout>
|
|
<View
|
android:layout_width="match_parent"
|
android:layout_height="1px"
|
android:background="#DBDBDB" />
|
|
<TextView
|
android:id="@+id/help_tv_commonquestion"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:background="@drawable/selector_color_item_bg"
|
android:drawableRight="@drawable/img_arrow_r"
|
android:padding="14dp"
|
android:text="常见问题"
|
android:textColor="@color/black"
|
android:textSize="18sp" />
|
|
<View
|
android:layout_width="match_parent"
|
android:layout_height="1px"
|
android:background="#DBDBDB" />
|
</LinearLayout>
|
|
</LinearLayout>
|