aboutsummaryrefslogtreecommitdiff
path: root/WordPress/src/main/res/layout/my_profile_fragment.xml
blob: 870eef87ccca80a36cd58d75f09e959f7ab0c560 (plain)
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
68
69
70
71
72
73
74
75
76
77
78
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
            android:layout_width="match_parent"
            android:layout_height="wrap_content">

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical">

        <LinearLayout
            android:id="@+id/first_name_row"
            style="@style/MyProfileRow"
            android:layout_marginTop="@dimen/margin_medium">

            <org.wordpress.android.widgets.WPTextView
                style="@style/MyProfileLabel"
                android:text="@string/first_name" />

            <org.wordpress.android.widgets.WPTextView
                android:id="@+id/first_name"
                android:text="@string/first_name"
                style="@style/MyProfileText" />

        </LinearLayout>

        <View style="@style/MyProfileDividerView" />

        <LinearLayout
            android:id="@+id/last_name_row"
            style="@style/MyProfileRow">

            <org.wordpress.android.widgets.WPTextView
                style="@style/MyProfileLabel"
                android:text="@string/last_name" />

            <org.wordpress.android.widgets.WPTextView
                android:id="@+id/last_name"
                style="@style/MyProfileText" />

        </LinearLayout>

        <View style="@style/MyProfileDividerView" />

        <LinearLayout
            android:id="@+id/display_name_row"
            style="@style/MyProfileRow">

            <org.wordpress.android.widgets.WPTextView
                style="@style/MyProfileLabel"
                android:text="@string/public_display_name" />

            <org.wordpress.android.widgets.WPTextView
                android:id="@+id/display_name"
                style="@style/MyProfileText" />

        </LinearLayout>

        <View style="@style/MyProfileDividerView" />

        <LinearLayout
            android:id="@+id/about_me_row"
            style="@style/MyProfileRow">

            <org.wordpress.android.widgets.WPTextView
                style="@style/MyProfileLabel"
                android:text="@string/about_me" />

            <org.wordpress.android.widgets.WPTextView
                android:id="@+id/about_me"
                style="@style/MyProfileText" />

        </LinearLayout>

        <View style="@style/MyProfileDividerView" />

    </LinearLayout>
</ScrollView>