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

item_localized_name.xml « layout « res « android - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1354e964610c742eb1d894457466fa9cf3a3ee53 (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
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
  xmlns:android="http://schemas.android.com/apk/res/android"
  android:id="@+id/name"
  android:layout_width="match_parent"
  android:layout_height="@dimen/editor_height_field"
  android:animateLayoutChanges="true"
  android:gravity="center_vertical"
  android:orientation="horizontal">

  <android.support.design.widget.TextInputLayout
    android:id="@+id/input_layout"
    android:layout_width="0dp"
    android:layout_height="wrap_content"
    android:layout_weight="1">

    <EditText
      android:id="@+id/input"
      style="@style/MwmWidget.Editor.FieldLayout.EditText"
      android:hint="@string/editor_edit_place_name_hint"
      android:inputType="textCapSentences"
      android:singleLine="true"/>

  </android.support.design.widget.TextInputLayout>

  <ImageButton
    android:id="@+id/delete"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:background="?selectableItemBackgroundBorderless"
    android:padding="@dimen/margin_half"
    android:src="@drawable/ic_close"
    android:tint="@color/base_red"/>

</LinearLayout>