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

edit_bookmark_common.xml « layout « res « android - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ab0238effa852e4faaf3a22b7c4e8316c9563d03 (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
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
  xmlns:android="http://schemas.android.com/apk/res/android"
  xmlns:tools="http://schemas.android.com/tools"
  android:id="@+id/rl__bookmark_details"
  android:layout_width="match_parent"
  android:layout_height="match_parent"
  android:padding="@dimen/margin_half">
  <LinearLayout
    android:id="@+id/ll__bookmark_name"
    android:layout_width="match_parent"
    android:layout_height="@dimen/height_item_edit_bookmark"
    android:layout_marginLeft="@dimen/margin_half"
    android:layout_marginRight="@dimen/margin_half"
    android:orientation="vertical">
    <com.mapswithme.maps.widget.CustomTextInputLayout
      android:layout_width="match_parent"
      android:layout_height="wrap_content">
      <EditText
        android:id="@+id/et__bookmark_name"
        style="@style/MwmWidget.PlacePage.EditText"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:hint="@string/name"
        android:inputType="textCapSentences"
        android:singleLine="true"/>

    </com.mapswithme.maps.widget.CustomTextInputLayout>
  </LinearLayout>

  <RelativeLayout
    android:id="@+id/rl__bookmark_set"
    android:layout_width="match_parent"
    android:layout_height="@dimen/height_item_edit_bookmark"
    android:layout_below="@id/ll__bookmark_name"
    android:layout_marginLeft="@dimen/margin_half_plus"
    android:layout_marginTop="@dimen/margin_half">
    <TextView
      android:id="@+id/tv__bookmark_set_title"
      android:layout_width="match_parent"
      android:layout_height="wrap_content"
      android:layout_marginRight="@dimen/margin_quadruple"
      android:layout_marginTop="@dimen/margin_base"
      android:text="@string/set"
      android:textAppearance="@style/MwmTextAppearance.Body3"/>

    <TextView
      android:id="@+id/tv__bookmark_set"
      android:layout_width="match_parent"
      android:layout_height="wrap_content"
      android:layout_below="@id/tv__bookmark_set_title"
      android:layout_centerVertical="true"
      android:layout_marginRight="@dimen/margin_quadruple"
      android:background="?attr/selectableItemBackground"
      android:clickable="true"
      android:drawableRight="@drawable/ic_arrow_down"
      android:paddingBottom="@dimen/margin_half"
      android:paddingTop="@dimen/margin_quarter_plus"
      android:textAppearance="@style/MwmTextAppearance.Body1"/>

    <View
      android:layout_width="match_parent"
      android:layout_height="1dp"
      android:layout_alignParentBottom="true"
      android:layout_marginBottom="@dimen/margin_half"
      android:layout_marginRight="@dimen/margin_quadruple"
      android:background="@color/divider"/>

    <ImageView
      android:id="@+id/iv__bookmark_color"
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:layout_alignParentBottom="true"
      android:layout_alignParentRight="true"
      android:background="?clickableBackground"
      android:padding="@dimen/margin_half"
      tools:src="@drawable/ic_bookmark_marker_red_on"/>
  </RelativeLayout>

  <LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_below="@id/rl__bookmark_set"
    android:layout_margin="@dimen/margin_half"
    android:orientation="vertical"
    android:paddingTop="@dimen/margin_base">

    <com.mapswithme.maps.widget.CustomTextInputLayout
      android:layout_width="match_parent"
      android:layout_height="wrap_content">
      <EditText
        android:id="@+id/et__description"
        style="@style/MwmWidget.PlacePage.EditText"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:hint="@string/edit_description_hint"
        android:inputType="textMultiLine"/>
    </com.mapswithme.maps.widget.CustomTextInputLayout>
  </LinearLayout>
</RelativeLayout>