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

fragment_ugc_route_edit.xml « layout « res « android - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e8df8810ae2cd2a66eda8337df44925e9d9b5522 (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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
  xmlns:android="http://schemas.android.com/apk/res/android"
  android:orientation="vertical"
  android:background="?cardBackground"
  android:layout_width="match_parent"
  android:layout_height="match_parent">
  <androidx.appcompat.widget.Toolbar
    android:id="@+id/toolbar"
    style="@style/MwmWidget.ToolbarStyle"
    android:layout_width="match_parent"
    android:layout_height="?attr/actionBarSize"
    android:theme="@style/MwmWidget.ToolbarTheme"/>
  <androidx.core.widget.NestedScrollView
    android:scrollbars="none"
    android:fillViewport="true"
    android:layout_width="match_parent"
    android:layout_height="match_parent">
  <LinearLayout
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="match_parent">
    <LinearLayout
      android:orientation="vertical"
      android:paddingStart="@dimen/margin_base"
      android:paddingEnd="@dimen/margin_base"
      android:paddingRight="@dimen/margin_base"
      android:paddingLeft="@dimen/margin_base"
      android:paddingBottom="@dimen/bookmark_hide_btn_padding_top"
      android:paddingTop="@dimen/margin_half_plus"
      android:layout_width="match_parent"
      android:layout_height="wrap_content">
      <TextView
        android:text="@string/ugc_route_edit_list_name"
        android:textAppearance="?android:attr/textAppearanceSmall"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"/>
      <LinearLayout
        android:orientation="horizontal"
        android:id="@+id/edit_name_container"
        android:layout_width="match_parent"
        android:layout_height="wrap_content">
        <EditText
          android:id="@+id/edit_category_name_view"
          android:layout_weight="1"
          android:layout_width="0dp"
          android:background="@null"
          android:layout_height="wrap_content"
          android:layout_marginRight="@dimen/margin_base"
          android:layout_marginEnd="@dimen/margin_base"/>
        <ImageView
          android:id="@+id/edit_text_clear_btn"
          android:src="?attr/icClearRounded"
          android:background="?selectableItemBackgroundBorderless"
          android:layout_gravity="center"
          android:layout_weight="0"
          android:layout_width="@dimen/margin_base_plus"
          android:layout_height="@dimen/margin_base_plus"/>
      </LinearLayout>
      <View
        android:background="?attr/iconTintDisabled"
        android:layout_marginTop="@dimen/margin_half"
        android:layout_width="match_parent"
        android:layout_height="@dimen/divider_height"/>
    </LinearLayout>
    <include layout="@layout/list_divider"/>
    <LinearLayout
      android:id="@+id/open_sharing_options_screen_btn_container"
      android:orientation="vertical"
      android:paddingStart="@dimen/margin_base"
      android:paddingEnd="@dimen/margin_base"
      android:paddingRight="@dimen/margin_base"
      android:paddingLeft="@dimen/margin_base"
      android:paddingTop="@dimen/margin_base"
      android:paddingBottom="@dimen/margin_half_plus"
      android:background="?attr/selectableItemBackground"
      android:layout_width="match_parent"
      android:layout_height="wrap_content">
      <TextView
        android:id="@+id/sharing_options_title"
        android:textAppearance="?android:attr/textAppearanceMedium"
        android:textColor="?android:attr/textColorPrimary"
        android:text="@string/sharing_options"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"/>
      <TextView
        android:id="@+id/sharing_options_desc"
        android:textAppearance="?android:attr/textAppearance"
        android:text="@string/sharing_options"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"/>
    </LinearLayout>

    <include layout="@layout/list_divider"/>
    <EditText
      android:id="@+id/edit_description"
      android:background="@null"
      android:hint="@string/ugc_route_edit_description_hint"
      android:minHeight="@dimen/height_item_multiline"
      android:paddingStart="@dimen/margin_base"
      android:paddingEnd="@dimen/margin_base"
      android:paddingRight="@dimen/margin_base"
      android:paddingLeft="@dimen/margin_base"
      android:textAppearance="?android:attr/textAppearance"
      android:layout_width="match_parent"
      android:layout_height="wrap_content"/>
    <View
      android:background="?android:attr/windowBackground"
      android:layout_width="match_parent"
      android:layout_height="match_parent"/>
  </LinearLayout>
  </androidx.core.widget.NestedScrollView>
</LinearLayout>