2018-06-22 15:42:52 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<layout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto">
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:orientation="vertical"
|
2019-01-22 18:25:45 +00:00
|
|
|
android:padding="?dialogPreferredPadding">
|
2018-06-22 15:42:52 +00:00
|
|
|
|
2021-01-18 17:26:46 +00:00
|
|
|
<com.google.android.material.textfield.TextInputLayout
|
2018-06-22 15:42:52 +00:00
|
|
|
android:id="@+id/input_layout"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
app:errorEnabled="true"
|
|
|
|
app:errorTextAppearance="@style/TextAppearance.Conversations.Design.Error"
|
|
|
|
app:hintTextAppearance="@style/TextAppearance.Conversations.Design.Hint">
|
|
|
|
|
2022-02-23 09:37:03 +00:00
|
|
|
<EditText
|
2018-06-22 15:42:52 +00:00
|
|
|
android:id="@+id/input_edit_text"
|
|
|
|
style="@style/Widget.Conversations.EditText"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:ems="10"
|
|
|
|
android:inputType="textPersonName">
|
|
|
|
|
|
|
|
<requestFocus/>
|
2022-02-23 09:37:03 +00:00
|
|
|
</EditText>
|
2018-06-22 15:42:52 +00:00
|
|
|
|
2021-01-18 17:26:46 +00:00
|
|
|
</com.google.android.material.textfield.TextInputLayout>
|
2018-06-22 15:42:52 +00:00
|
|
|
</LinearLayout>
|
|
|
|
</layout>
|