aboutsummaryrefslogtreecommitdiff
path: root/WordPress/src/main/res/layout/reader_empty_view.xml
blob: 7b501ab3b80a00b95b6a224e8497e67bedd21740 (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
79
80
81
82
83
84
85
86
87
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_marginTop="@dimen/toolbar_height"
    android:gravity="center"
    android:orientation="vertical"
    android:visibility="gone"
    tools:visibility="visible">

    <RelativeLayout
        android:id="@+id/layout_box_images"
        android:layout_width="wrap_content"
        android:layout_height="100dp"
        android:layout_marginBottom="@dimen/margin_medium"
        android:visibility="gone"
        tools:visibility="visible">

        <ImageView
            android:id="@+id/empty_tags_box_bottom"
            android:layout_width="86dp"
            android:layout_height="54dp"
            android:layout_alignParentBottom="true"
            app:srcCompat="@drawable/box_with_pages_bottom" />

        <ImageView
            android:id="@+id/empty_tags_box_page3"
            android:layout_width="54dp"
            android:layout_height="70dp"
            android:layout_alignParentBottom="true"
            android:layout_alignParentLeft="true"
            android:layout_marginLeft="2dp"
            app:srcCompat="@drawable/box_with_pages_page3" />

        <ImageView
            android:id="@+id/empty_tags_box_page2"
            android:layout_width="53dp"
            android:layout_height="70dp"
            android:layout_alignParentBottom="true"
            android:layout_alignParentLeft="true"
            android:layout_marginBottom="15dp"
            android:layout_marginLeft="17dp"
            app:srcCompat="@drawable/box_with_pages_page2" />

        <ImageView
            android:id="@+id/empty_tags_box_page1"
            android:layout_width="56dp"
            android:layout_height="73.5dp"
            android:layout_alignParentBottom="true"
            android:layout_alignParentLeft="true"
            android:layout_marginLeft="28dp"
            app:srcCompat="@drawable/box_with_pages_page1" />

        <ImageView
            android:id="@+id/empty_tags_box_top"
            android:layout_width="86dp"
            android:layout_height="54dp"
            android:layout_alignParentBottom="true"
            app:srcCompat="@drawable/box_with_pages_top" />
    </RelativeLayout>

    <org.wordpress.android.widgets.WPTextView
        android:id="@+id/title_empty"
        style="@style/WordPress.EmptyList.Title"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginBottom="@dimen/empty_list_title_bottom_margin"
        android:layout_marginLeft="@dimen/empty_list_title_side_margin"
        android:layout_marginRight="@dimen/empty_list_title_side_margin"
        android:layout_marginTop="@dimen/margin_medium"
        android:text="@string/reader_empty_posts_in_tag"
        app:fixWidowWords="true" />

    <org.wordpress.android.widgets.WPTextView
        android:id="@+id/description_empty"
        style="@style/WordPress.EmptyList.Description"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginBottom="@dimen/empty_list_description_bottom_margin"
        android:layout_marginLeft="@dimen/empty_list_description_side_margin"
        android:layout_marginRight="@dimen/empty_list_description_side_margin"
        android:text="@string/reader_empty_posts_in_tag"
        app:fixWidowWords="true" />

</LinearLayout>