<?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/mainBackColor"
android:orientation="vertical">
<include layout="@layout/include_base_title" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/mainBackColor"
android:orientation="vertical"
android:padding="@dimen/dp_10">
<RelativeLayout
android:id="@+id/userDetailLayout"
style="@style/RelativeItemLayoutStyle">
<TextView
android:id="@+id/userNameView"
style="@style/RelativeTextViewStyle" />
<ImageView style="@style/RelativeRightImageStyle" />
</RelativeLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="@dimen/dp_20"
android:background="@drawable/bg_layout"
android:orientation="vertical">
<RelativeLayout
android:id="@+id/helpCenterLayout"
style="@style/RelativeItemLayoutStyle">
<TextView
style="@style/RelativeTextViewStyle"
android:text="帮助中心" />
<ImageView style="@style/RelativeRightImageStyle" />
</RelativeLayout>
<View style="@style/DividerViewStyle" />
<RelativeLayout
android:id="@+id/aboutUsLayout"
style="@style/RelativeItemLayoutStyle">
<TextView
style="@style/RelativeTextViewStyle"
android:text="关于我们" />
<ImageView style="@style/RelativeRightImageStyle" />
</RelativeLayout>
<View style="@style/DividerViewStyle" />
<RelativeLayout
android:id="@+id/updateVersionLayout"
style="@style/RelativeItemLayoutStyle">
<TextView
style="@style/RelativeTextViewStyle"
android:text="版本更新" />
<ImageView style="@style/RelativeRightImageStyle" />
</RelativeLayout>
<View style="@style/DividerViewStyle" />
<RelativeLayout style="@style/RelativeItemLayoutStyle">
<TextView
style="@style/RelativeTextViewStyle"
android:text="联系客服" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentEnd="true"
android:layout_centerVertical="true"
android:layout_marginEnd="@dimen/dp_10"
android:autoLink="phone"
android:text="010-68387447"
android:textColorLink="@color/mainThemeColor"
android:textSize="@dimen/sp_16" />
</RelativeLayout>
</LinearLayout>
</LinearLayout>
</LinearLayout>