client_Hale
2018-09-20 11a35343de8c14c2ddc879caffa40fa239397404
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<?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>