aboutsummaryrefslogtreecommitdiff
path: root/WordPress/src/main/res/layout/my_profile_dialog.xml
blob: 48ae35ac775a0d068dd2f78d6a9a9d5cd1c84a6e (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
<?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:orientation="vertical"
              android:padding="@dimen/margin_extra_large">

    <org.wordpress.android.widgets.WPTextView
        android:id="@+id/my_profile_dialog_label"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginBottom="@dimen/margin_large"
        android:layout_marginLeft="@dimen/margin_small"
        android:layout_marginStart="@dimen/margin_small"
        android:fontFamily="sans-serif-light"
        android:textColor="@color/grey_dark"
        android:textSize="@dimen/text_sz_extra_large"
        android:textStyle="bold"/>

    <org.wordpress.android.widgets.WPTextView
        android:id="@+id/my_profile_dialog_hint"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginLeft="@dimen/margin_small"
        android:layout_marginStart="@dimen/margin_small"
        android:layout_marginTop="@dimen/margin_medium"
        android:textColor="@color/grey_darken_10"
        android:textSize="@dimen/text_sz_small"/>

    <org.wordpress.android.widgets.WPEditText
        android:id="@+id/my_profile_dialog_input"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"/>

</LinearLayout>