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

fragment_auth_editor_dialog.xml « layout « res « android - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 11794ee2a5d1f50985e691068f847d9d28d524ce (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
<?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="wrap_content"
  android:layout_height="match_parent">

  <LinearLayout
    android:id="@+id/block_auth"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:gravity="center_horizontal"
    android:minWidth="280dp"
    android:orientation="vertical"
    android:padding="@dimen/margin_base_plus">

    <ImageView
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:src="@drawable/img_auth"/>

    <TextView
      android:id="@+id/first_osm_edit"
      android:layout_width="match_parent"
      android:layout_height="wrap_content"
      android:layout_marginBottom="@dimen/margin_base_plus"
      android:layout_marginTop="20dp"
      android:fontFamily="@string/robotoMedium"
      android:gravity="center"
      android:text="@string/login_to_make_edits_visible"
      android:textColor="?android:textColorPrimary"
      android:textSize="@dimen/text_size_toolbar"
      tools:ignore="UnusedAttribute"/>

    <LinearLayout
      android:layout_width="match_parent"
      android:layout_height="wrap_content"
      android:layout_marginBottom="@dimen/margin_half_plus"
      android:orientation="horizontal"
      tools:ignore="ButtonStyle">
      <ImageButton
        android:id="@+id/login_facebook"
        android:layout_width="match_parent"
        android:layout_height="@dimen/editor_auth_btn_height"
        android:background="@drawable/com_facebook_button_background"
        android:src="@drawable/ic_login_fb"/>
    </LinearLayout>

    <Button
      android:id="@+id/login_osm"
      style="@style/MwmWidget.Button.Accent"
      android:layout_width="match_parent"
      android:layout_height="@dimen/editor_auth_btn_height"
      android:fontFamily="@string/robotoMedium"
      android:text="@string/openstreetmap"
      android:textAllCaps="false"
      android:textAppearance="@style/MwmTextAppearance.Body1.Light"
      tools:targetApi="jelly_bean"/>

    <Button
      android:id="@+id/register"
      style="@style/MwmWidget.Button.Accent"
      android:layout_width="match_parent"
      android:layout_height="wrap_content"
      android:layout_marginTop="@dimen/margin_base"
      android:background="@drawable/button_editor_light"
      android:fontFamily="@string/robotoMedium"
      android:padding="@dimen/margin_quarter"
      android:text="@string/register_at_openstreetmap"
      android:textAppearance="@style/MwmTextAppearance.Body1"
      android:textColor="@color/text_dark"
      tools:targetApi="jelly_bean"/>

  </LinearLayout>

</ScrollView>