aboutsummaryrefslogtreecommitdiff
path: root/WordPress/src/main/res/layout/help_activity_with_helpshift.xml
blob: f2875aac88e843ad0f4ccbbaeb5c2a6268742444 (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"
            xmlns:app="http://schemas.android.com/apk/res-auto"
            android:id="@+id/main_view"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:background="@color/nux_background"
            android:fillViewport="true">

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

        <org.wordpress.android.widgets.WPLinearLayoutSizeBound
            app:maxWidth="@dimen/nux_width"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:gravity="center">

            <LinearLayout
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_marginLeft="16dp"
                android:layout_marginRight="16dp"
                android:orientation="vertical"
                android:gravity="center">

                <org.wordpress.android.widgets.WPTextView
                    style="@style/WordPress.NUXTitle"
                    android:text="@string/help"
                    android:id="@+id/create_account_label"
                    android:fontFamily="sans-serif-light" />

                <org.wordpress.android.widgets.WPTextView
                    style="@style/WordPress.NUXGreyButtonNoBg"
                    android:text="@string/nux_help_description"
                    android:id="@+id/nux_help_description"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_marginLeft="16dp"
                    android:layout_marginRight="16dp"
                    android:layout_marginBottom="16dp"
                    app:fixWidowWords="true"/>

                <org.wordpress.android.widgets.WPTextView
                    style="@style/WordPress.NUXPrimaryButton"
                    android:text="@string/contact_us"
                    android:id="@+id/contact_us_button"
                    android:layout_width="match_parent"
                    android:gravity="center"/>

                <org.wordpress.android.widgets.WPTextView
                    style="@style/WordPress.NUXPrimaryButton"
                    android:text="@string/browse_our_faq_button"
                    android:id="@+id/faq_button"
                    android:layout_width="match_parent"
                    android:gravity="center"/>

                <org.wordpress.android.widgets.WPTextView
                    style="@style/WordPress.NUXPrimaryButton"
                    android:text="@string/reader_title_applog"
                    android:id="@+id/applog_button"
                    android:layout_width="match_parent"
                    android:gravity="center"/>

                <org.wordpress.android.widgets.WPTextView
                    style="@style/WordPress.NUXGreyButtonNoBg"
                    android:text="@string/app_name"
                    android:id="@+id/nux_help_version"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_marginTop="8dp"/>
            </LinearLayout>
        </org.wordpress.android.widgets.WPLinearLayoutSizeBound>
    </LinearLayout>
</ScrollView>