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

fragment_ads_removal_purchase_dialog.xml « layout « res « android - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 358b646084a316e1bc50d5c1e7efb58e04061593 (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
<?xml version="1.0" encoding="utf-8"?>
<androidx.core.widget.NestedScrollView
  xmlns:android="http://schemas.android.com/apk/res/android"
  xmlns:tools="http://schemas.android.com/tools"
  android:layout_height="match_parent"
  android:layout_width="match_parent"
  android:fillViewport="true">
  <RelativeLayout
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:minHeight="@dimen/ads_removal_dialog_min_height"
    android:padding="@dimen/margin_base_plus"
    android:orientation="vertical">
    <TextView
      android:id="@+id/title"
      android:layout_width="match_parent"
      android:layout_height="wrap_content"
      android:layout_alignParentTop="true"
      android:layout_centerHorizontal="true"
      android:gravity="center"
      android:layout_gravity="center_horizontal"
      android:textAppearance="@style/MwmTextAppearance.Title"
      android:visibility="invisible"
      tools:visibility="visible"/>
    <include
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:layout_centerHorizontal="true"
      android:layout_below="@id/title"
      android:layout_marginTop="@dimen/margin_base"
      layout="@layout/ads_removal_explanation_items"/>
    <ImageView
      android:id="@+id/image"
      android:layout_centerHorizontal="true"
      android:layout_below="@id/title"
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:layout_gravity="center_horizontal"
      android:layout_marginTop="@dimen/margin_half"
      android:src="@drawable/img_mappy_heart"
      android:visibility="invisible"
      tools:visibility="visible"/>
    <include
      android:id="@+id/pay_button_container"
      layout="@layout/ads_removal_pay_button_container"
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:layout_centerHorizontal="true"
      android:layout_below="@id/image"
      android:layout_marginTop="@dimen/margin_base"
      android:layout_marginBottom="@dimen/margin_base"/>
    <include
      layout="@layout/ads_removal_progress_container"
      android:layout_width="match_parent"
      android:layout_height="wrap_content"
      android:layout_centerInParent="true"/>
    <include
      layout="@layout/ads_removal_explanation_button"
      android:layout_centerHorizontal="true"
      android:layout_alignParentBottom="true"
      android:layout_below="@id/pay_button_container"
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"/>
  </RelativeLayout>
</androidx.core.widget.NestedScrollView>