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

about.xml « layout « res « android - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: bee6a9d262180d1c296142bf0e8e225d60e6d579 (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
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
             xmlns:tools="http://schemas.android.com/tools"
             android:layout_width="match_parent"
             android:layout_height="match_parent">
  <android.support.v4.widget.NestedScrollView
      android:id="@+id/content_frame"
      android:layout_width="match_parent"
      android:layout_height="match_parent">
    <LinearLayout android:orientation="vertical"
                  android:layout_width="match_parent"
                  android:layout_height="wrap_content">
      <ImageView android:layout_width="wrap_content"
                 android:layout_height="wrap_content"
                 android:layout_marginTop="@dimen/margin_base_plus"
                 android:layout_marginBottom="@dimen/margin_base"
                 android:layout_gravity="center_horizontal"
                 android:src="@drawable/about_logo"/>

      <TextView android:id="@+id/version"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:gravity="center_horizontal"
                android:textAppearance="@style/MwmTextAppearance.Body1"
                tools:text="Version: 5.0.0"/>

      <TextView
        android:id="@+id/data_version"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:gravity="center_horizontal"
        android:textAppearance="@style/MwmTextAppearance.Body4"
        tools:text="Data: 151215"/>

      <TextView android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:gravity="center_horizontal"
                android:layout_marginTop="@dimen/margin_base_plus"
                android:layout_marginBottom="@dimen/margin_base_plus"
                android:layout_marginLeft="@dimen/margin_base"
                android:layout_marginRight="@dimen/margin_base"
                android:textAppearance="@style/MwmTextAppearance.Body2"
                android:text="@string/about_description"/>

      <TextView android:id="@+id/web"
                style="@style/MwmWidget.TextView.Item"
                android:text="@string/website"
                android:drawableLeft="@drawable/ic_website"
                android:drawableStart="@drawable/ic_website"/>

      <TextView android:id="@+id/facebook"
                style="@style/MwmWidget.TextView.Item"
                android:text="@string/facebook"
                android:drawableLeft="@drawable/ic_facebook"
                android:drawableStart="@drawable/ic_facebook"/>

      <TextView android:id="@+id/twitter"
                style="@style/MwmWidget.TextView.Item"
                android:text="@string/twitter"
                android:drawableLeft="@drawable/ic_twitter"
                android:drawableStart="@drawable/ic_twitter"/>

      <View android:layout_width="match_parent"
            android:layout_height="1dp"
            android:layout_marginTop="@dimen/margin_quarter"
            android:layout_marginBottom="@dimen/margin_quarter"
            android:background="?dividerHorizontal"/>

      <TextView android:id="@+id/rate"
                style="@style/MwmWidget.TextView.Item"
                android:text="@string/rate_gp"
                android:drawableLeft="@drawable/ic_rate"
                android:drawableStart="@drawable/ic_rate"/>

      <TextView android:id="@+id/share"
                style="@style/MwmWidget.TextView.Item"
                android:text="@string/tell_friends"
                android:drawableLeft="@drawable/ic_share"
                android:drawableStart="@drawable/ic_share"/>

      <View android:layout_width="match_parent"
            android:layout_height="1dp"
            android:layout_marginTop="@dimen/margin_quarter"
            android:layout_marginBottom="@dimen/margin_quarter"
            android:background="?dividerHorizontal"/>
      <TextView android:id="@+id/privacy_policy"
                style="@style/MwmWidget.TextView.Item"
                android:text="@string/privacy_policy"/>
      <TextView android:id="@+id/term_of_use_link"
                style="@style/MwmWidget.TextView.Item"
                android:text="@string/terms_of_use"/>
      <TextView android:id="@+id/copyright"
                style="@style/MwmWidget.TextView.Item"
                android:text="@string/copyright"/>
    </LinearLayout>
  </android.support.v4.widget.NestedScrollView>

  <include layout="@layout/shadow_top"/>
</FrameLayout>