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

item_editor_input.xml « layout « res « android - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: dc4597b582bf6686df6c0adc54b54e6273590ad4 (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
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
  xmlns:android="http://schemas.android.com/apk/res/android"
  xmlns:tools="http://schemas.android.com/tools"
  style="@style/MwmWidget.Editor.MetadataBlock">

  <ImageView
    android:id="@+id/icon"
    style="@style/MwmWidget.Editor.MetadataIcon"
    tools:src="@drawable/ic_phone"/>

  <com.google.android.material.textfield.TextInputLayout
    android:id="@+id/custom_input"
    style="@style/MwmWidget.Editor.CustomTextInput"
    android:layout_centerVertical="true"
    android:layout_marginLeft="54dp"
    android:layout_marginStart="54dp">

    <EditText
      android:id="@+id/input"
      style="@style/MwmWidget.Editor.FieldLayout.EditText"
      tools:hint="Hint"
      tools:text="Input"/>

  </com.google.android.material.textfield.TextInputLayout>

</RelativeLayout>