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

dialog_edit_text.xml « layout « res « android - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 575e5b32fdf3b9dbceb5045433a3bc3d8d6e7697 (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
<LinearLayout
  xmlns:android="http://schemas.android.com/apk/res/android"
  android:layout_width="wrap_content"
  android:layout_height="wrap_content"
  android:minWidth="@dimen/width_dialog_base"
  android:orientation="vertical"
  android:padding="@dimen/margin_base_plus">

  <TextView
    android:id="@+id/tv__title"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_marginBottom="@dimen/margin_base"
    android:textAppearance="@style/MwmTextAppearance.Title"/>

  <com.google.android.material.textfield.TextInputLayout
    android:id="@+id/input"
    android:layout_width="match_parent"
    android:layout_height="wrap_content">

    <EditText
      android:id="@+id/et__input"
      style="@style/MwmWidget.PlacePage.EditText"
      android:layout_width="match_parent"
      android:layout_height="wrap_content"
      android:maxLength="100"
      android:inputType="text|textCapSentences"
      android:singleLine="true"/>

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

</LinearLayout>