Welcome to mirror list, hosted at ThFree Co, Russian Federation.

bookmark_subscription_fragment.xml « layout « res « android - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d6ef039e297e649fef9db9ad5604c38df38b7fef (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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout
  android:orientation="vertical"
  android:layout_width="match_parent"
  android:layout_height="match_parent"
  android:background="@color/white_primary"
  android:gravity="center"
  xmlns:android="http://schemas.android.com/apk/res/android"
  xmlns:tools="http://schemas.android.com/tools">
  <ProgressBar
    android:id="@+id/root_screen_progress"
    android:layout_width="@dimen/primary_button_min_height"
    android:layout_height="@dimen/primary_button_min_height"
    android:layout_gravity="center"
    android:visibility="gone"
    tools:visibility="visible"/>
  <android.support.v4.widget.NestedScrollView
    android:id="@+id/content_view"
    android:layout_height="match_parent"
    android:layout_width="match_parent"
    android:visibility="gone"
    tools:visibility="visible"
    android:fillViewport="true">
    <LinearLayout
      android:orientation="vertical"
      android:background="?attr/bookmarkSubscriptionScreenBg"
      android:padding="@dimen/margin_base"
      android:clipToPadding="false"
      android:clipChildren="false"
      android:layout_width="match_parent"
      android:layout_height="wrap_content">

      <TextView
        android:id="@+id/title"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:textSize="@dimen/text_size_title"
        android:layout_gravity="center"
        android:textColor="?subscriptionTitleColor"
        android:text="@string/subscription_screen_native_title_version_2"
        android:fontFamily="@string/robotoMedium"
        android:layout_marginRight="@dimen/height_item_oneline"
        android:layout_marginStart="@dimen/height_item_oneline"
        android:layout_marginEnd="@dimen/height_item_oneline"
        android:layout_marginLeft="@dimen/height_item_oneline"
        android:textAppearance="?android:attr/textAppearanceLarge"
        android:letterSpacing="-0.02"
        android:lineSpacingExtra="@dimen/line_spacing_extra_1"
        android:textStyle="bold"
        android:gravity="center"
        tools:text="Unlimited access to 5000+ guides!"
        tools:ignore="UnusedAttribute"/>
      <TextView
        android:id="@+id/subtitle"
        android:layout_marginTop="@dimen/margin_base"
        tools:text="Every kind of journey. Whether alone or with friends, hiking or sunbathing"
        android:text="@string/subscription_screen_native_message_version_2"
        android:gravity="center"
        android:layout_gravity="center"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:fontFamily="@string/robotoRegular"
        android:textStyle="normal"
        android:textColor="?subscriptionSubtitleColor"
        android:textAppearance="?android:attr/textAppearanceMedium"
        android:letterSpacing="-0.01"
        tools:ignore="UnusedAttribute"/>

      <FrameLayout
        android:layout_marginTop="@dimen/bookmarks_subs_margin_top"
        android:layout_width="wrap_content"
        android:gravity="center"
        android:layout_gravity="center"
        android:clipToPadding="false"
        android:clipChildren="false"
        android:layout_height="wrap_content">
        <include
          android:layout_height="wrap_content"
          android:layout_width="wrap_content"
          android:clipToPadding="false"
          android:clipChildren="false"
          android:layout_gravity="center_horizontal"
          android:layout_marginTop="@dimen/margin_base_plus"
          layout="@layout/subscription_offer_card"/>
        <include layout="@layout/subscription_offer_sale"/>
      </FrameLayout>

      <FrameLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginStart="@dimen/margin_quadruple"
        android:layout_marginEnd="@dimen/margin_quadruple"
        android:layout_marginLeft="@dimen/margin_quadruple"
        android:layout_marginRight="@dimen/margin_quadruple"
        android:layout_marginTop="@dimen/margin_double_and_half"
        android:layout_gravity="center">
        <Button
          android:id="@+id/continue_btn"
          style="@style/MwmWidget.Button.Primary"
          android:layout_width="match_parent"
          android:layout_height="match_parent"
          android:text="@string/continue_download"
          tools:text="BUY FOR $1.99"/>
        <ProgressBar
          android:id="@+id/progress"
          android:layout_width="@dimen/primary_button_min_height"
          android:layout_height="@dimen/primary_button_min_height"
          android:layout_gravity="center"
          android:visibility="gone"
          tools:visibility="visible"/>
      </FrameLayout>

      <TextView
        android:id="@+id/restore_purchase_btn"
        android:background="?attr/selectableItemBackground"
        android:layout_gravity="center"
        android:layout_marginTop="@dimen/margin_base_plus_quarter"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginStart="@dimen/margin_quadruple"
        android:layout_marginEnd="@dimen/margin_quadruple"
        android:layout_marginLeft="@dimen/margin_quadruple"
        android:layout_marginRight="@dimen/margin_quadruple"
        android:minHeight="@dimen/primary_button_min_height"
        android:paddingLeft="@dimen/margin_half_plus"
        android:paddingStart="@dimen/margin_half_plus"
        android:paddingRight="@dimen/margin_half_plus"
        android:paddingEnd="@dimen/margin_half_plus"
        android:gravity="center"
        android:fontFamily="@string/robotoMedium"
        android:textAppearance="@style/MwmTextAppearance.Body3.Primary"
        android:text="@string/restore"
        android:textColor="?colorAccent"
        tools:text="Restore purchases"
        tools:ignore="UnusedAttribute"/>
      <TextView
        android:layout_marginTop="@dimen/margin_base_plus_quarter"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:textAppearance="?android:textAppearance"
        android:textSize="@dimen/text_size_icon_title"
        android:fontFamily="@string/robotoRegular"
        android:textStyle="normal"
        android:justificationMode="inter_word"
        android:text="@string/subscription_terms_android"
        android:textColor="?attr/secondary"
        android:letterSpacing="-0.01"
        android:lineSpacingExtra="@dimen/terms_of_use_line_spacing"
        tools:targetApi="o"/>
      <LinearLayout
        android:layout_marginTop="@dimen/margin_base"
        android:layout_width="match_parent"
        android:layout_height="wrap_content">

        <LinearLayout
          android:layout_weight="1"
          android:layout_width="0dp"
          android:layout_height="wrap_content">
          <TextView
            android:id="@+id/term_of_use_link"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:textSize="@dimen/text_size_body_5"
            android:fontFamily="@string/robotoMedium"
            android:singleLine="true"
            android:ellipsize="end"
            android:textStyle="normal"
            android:textColor="?attr/secondary"
            android:letterSpacing="-0.01"
            tools:targetApi="lollipop"
            tools:text="Terms of UseTerms of UseTerms of UseTerms of UseTerms of UseTerms of UseTerms of UseTerms of UseTerms of UseTerms of UseTerms of Use"
            android:text="@string/terms_of_use"
            android:background="?selectableItemBackground"/>
        </LinearLayout>
        <LinearLayout
          android:layout_weight="1"
          android:gravity="end"
          android:layout_width="0dp"
          android:layout_height="wrap_content">
          <TextView
            android:id="@+id/privacy_policy_link"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:textSize="@dimen/text_size_body_5"
            android:fontFamily="@string/robotoMedium"
            android:singleLine="true"
            android:ellipsize="end"
            android:textStyle="normal"
            android:textColor="?attr/secondary"
            android:layout_gravity="end"
            android:gravity="end"
            android:letterSpacing="-0.01"
            tools:targetApi="lollipop"
            tools:text="lollipoplollipoplollipoplollipoplollipoplollipoplollipoplollipoplollipoplollipoplollipoplollipoplollipoplollipoplollipoplollipoplollipop"
            android:text="@string/privacy_policy"
            android:background="?selectableItemBackground"/>
        </LinearLayout>
      </LinearLayout>
    </LinearLayout>
  </android.support.v4.widget.NestedScrollView>
</FrameLayout>