| <?xml version="1.0" encoding="utf-8"?> | 
| <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" | 
|     android:layout_width="@dimen/user_center_detail_width" | 
|     android:layout_height="match_parent" | 
|     android:orientation="vertical" | 
|     android:background="@color/white"> | 
|   | 
|     <RelativeLayout | 
|         android:layout_width="match_parent" | 
|         android:layout_height="@dimen/user_center_head_item_height" | 
|         android:gravity="center_vertical"> | 
|   | 
|         <RelativeLayout | 
|             android:id="@+id/user_center_logout_back" | 
|             android:layout_width="30dp" | 
|             android:layout_height="match_parent"> | 
|   | 
|             <ImageView | 
|                 android:layout_width="wrap_content" | 
|                 android:layout_height="wrap_content" | 
|                 android:layout_centerInParent="true" | 
|                 android:src="@drawable/mr_user_center_back" /> | 
|   | 
|         </RelativeLayout> | 
|   | 
|         <TextView | 
|             android:layout_width="wrap_content" | 
|             android:layout_height="wrap_content" | 
|             android:layout_centerInParent="true" | 
|             android:text="@string/mr_user_center_logout" | 
|             android:textColor="@color/user_center_common_title" | 
|             android:textSize="@dimen/user_center_title" /> | 
|   | 
|         <View | 
|             android:layout_width="match_parent" | 
|             android:layout_height="2px" | 
|             android:layout_alignParentBottom="true" | 
|             android:background="@color/user_center_divide_line" /> | 
|   | 
|     </RelativeLayout> | 
|   | 
|     <RelativeLayout | 
|         android:layout_width="match_parent" | 
|         android:layout_height="@dimen/user_center_contactUs_item_height"> | 
|   | 
|         <TextView | 
|             android:layout_width="wrap_content" | 
|             android:layout_height="wrap_content" | 
|             android:layout_centerVertical="true" | 
|             android:layout_alignParentLeft="true" | 
|             android:layout_marginLeft="15dp" | 
|             android:text="@string/mr_user_center_logout_item_title" | 
|             android:textColor="@color/user_center_contactUs_text_color01" | 
|             android:textSize="@dimen/user_center_contactUs_text01" /> | 
|   | 
|         <TextView | 
|             android:id="@+id/user_center_cur_account" | 
|             android:layout_width="wrap_content" | 
|             android:layout_height="wrap_content" | 
|             android:layout_alignParentRight="true" | 
|             android:layout_centerVertical="true" | 
|             android:layout_marginRight="15dp" | 
|             android:text="@string/mr_user_center_logout_item_msg" | 
|             android:textColor="@color/user_center_contactUs_text_color02" | 
|             android:textSize="@dimen/user_center_contactUs_text02" /> | 
|   | 
|         <View | 
|             android:layout_width="match_parent" | 
|             android:layout_height="1px" | 
|             android:layout_alignParentBottom="true" | 
|             android:background="@color/user_center_divide_line" /> | 
|     </RelativeLayout> | 
|   | 
|     <Button | 
|         android:id="@+id/user_center_logout_btn" | 
|         android:layout_width="match_parent" | 
|         android:layout_height="@dimen/user_center_item_height" | 
|         android:layout_marginLeft="15dp" | 
|         android:layout_marginRight="15dp" | 
|         android:layout_marginTop="10dp" | 
|         android:background="@drawable/mr_corner_circle" | 
|         android:text="@string/mr_logout" | 
|         android:textColor="@color/white" /> | 
|   | 
| </LinearLayout> |