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

activity_download_resources.xml « layout « res « android - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 27c37f1f1afe4806d1b4ce922bb7faffe4998e78 (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
<?xml version="1.0" encoding="utf-8"?>
<ScrollView
    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">

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

    <TextView
        android:id="@+id/tv__download_message"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginTop="20dip"
        android:drawableLeft="@drawable/ic_launcher"
        android:drawablePadding="@dimen/margin_base"
        android:padding="@dimen/margin_half"
        android:text="@string/download_resources"
        android:textAppearance="@style/MwmTextAppearance.Body2"/>

    <ProgressBar
        android:id="@+id/pb__download_resources"
        style="@style/Widget.AppCompat.ProgressBar.Horizontal"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginTop="@dimen/margin_base_plus"
        android:indeterminate="false"
        android:minWidth="200dip"/>

    <Button
        android:id="@+id/btn__download_resources"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginTop="@dimen/margin_base_plus"
        android:textAppearance="@style/MwmTextAppearance.Body1"
        tools:text="@string/download"/>

    <TextView
        android:id="@+id/tv__location"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginTop="@dimen/margin_base_plus"
        android:gravity="center_horizontal"
        android:text="@string/getting_position"
        android:textAppearance="@style/MwmTextAppearance.Body2"
        android:visibility="gone"/>

    <CheckBox
        android:id="@+id/chb__download_country"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginTop="@dimen/margin_base_plus"
        android:text="@string/download_country_ask"
        android:textAppearance="@style/MwmTextAppearance.Body2"
        android:visibility="gone"/>
  </LinearLayout>

</ScrollView>