<?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/itemLayoutStyle"> <TextView android:id="@+id/userNameView" style="@style/textViewStyle" android:text="@string/app_name" /> <ImageView style="@style/rightImageStyle" /> </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/itemLayoutStyle"> <TextView style="@style/textViewStyle" android:text="帮助中心" /> <ImageView style="@style/rightImageStyle" /> </RelativeLayout> <View style="@style/dividerViewStyle" /> <RelativeLayout android:id="@+id/customerServiceLayout" style="@style/itemLayoutStyle"> <TextView style="@style/textViewStyle" android:text="联系客服" /> <ImageView style="@style/rightImageStyle" /> </RelativeLayout> <View style="@style/dividerViewStyle" /> <RelativeLayout android:id="@+id/updateVersionLayout" style="@style/itemLayoutStyle"> <TextView style="@style/textViewStyle" android:text="版本更新" /> <ImageView style="@style/rightImageStyle" /> </RelativeLayout> <View style="@style/dividerViewStyle" /> <RelativeLayout android:id="@+id/aboutUsLayout" style="@style/itemLayoutStyle"> <TextView style="@style/textViewStyle" android:text="关于我们" /> <ImageView style="@style/rightImageStyle" /> </RelativeLayout> </LinearLayout> </LinearLayout> </LinearLayout>