| <?xml version="1.0" encoding="utf-8"?> | 
| <!-- The left navigation drawer --> | 
| <LinearLayout | 
|     xmlns:android="http://schemas.android.com/apk/res/android" | 
|     android:layout_width="@dimen/user_center_view_width" | 
|     android:layout_height="match_parent" | 
|     android:orientation="horizontal" | 
|     android:id="@+id/user_center_view_show"> | 
|   | 
|     <!-- 导航栏 --> | 
|     <LinearLayout | 
|         android:id="@+id/user_center_navigation" | 
|         android:layout_width="@dimen/user_center_navigation_width" | 
|         android:layout_height="match_parent" | 
|         android:orientation="vertical" | 
|         android:background="@color/user_center_nav_bg"> | 
|   | 
|   | 
|         <RelativeLayout | 
|             android:id="@+id/mr_navigation_mine" | 
|             android:layout_width="40dp" | 
|             android:layout_height="60dp" | 
|             android:gravity="center"> | 
|             <LinearLayout | 
|                 android:id="@+id/user_center_mine_ll" | 
|                 android:layout_width="wrap_content" | 
|                 android:layout_height="wrap_content" | 
|                 android:orientation="vertical" | 
|                 android:gravity="center_horizontal"> | 
|   | 
|                 <ImageView | 
|                     android:layout_width="30dp" | 
|                     android:layout_height="30dp" | 
|                     android:background="@drawable/mr_head_portrait"/> | 
|   | 
|                 <TextView | 
|                     android:layout_width="wrap_content" | 
|                     android:layout_height="wrap_content" | 
|                     android:layout_marginTop="2dp" | 
|                     android:text="@string/mr_user_center_mine" | 
|                     android:textSize="@dimen/user_center_navigation_title" | 
|                     android:textColor="@color/user_center_textcolor_grey"/> | 
|   | 
|             </LinearLayout> | 
|         </RelativeLayout> | 
|   | 
|     </LinearLayout> | 
|   | 
|     <View | 
|         android:layout_width="1px" | 
|         android:layout_height="match_parent" | 
|         android:background="#CB38353B"/> | 
|   | 
|     <View | 
|         android:layout_width="1px" | 
|         android:layout_height="match_parent" | 
|         android:background="#CB101012"/> | 
|   | 
|     <FrameLayout | 
|         android:id="@+id/user_center_content_container" | 
|         android:layout_width="@dimen/user_center_detail_width" | 
|         android:layout_height="match_parent"> | 
|   | 
|   | 
|     </FrameLayout> | 
|   | 
| </LinearLayout> |