2017-01-02 06:09:23 -05:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2020-02-21 18:43:50 -05:00
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2017-01-02 06:09:23 -05:00
|
|
|
android:layout_width="match_parent"
|
2020-03-11 19:08:57 -04:00
|
|
|
android:layout_height="wrap_content"
|
2017-01-02 06:09:23 -05:00
|
|
|
android:background="?attr/selectableItemBackground"
|
2020-02-21 18:43:50 -05:00
|
|
|
android:focusable="true"
|
|
|
|
android:paddingStart="?attr/listPreferredItemPaddingStart"
|
|
|
|
android:paddingEnd="?attr/listPreferredItemPaddingEnd">
|
2017-01-02 06:09:23 -05:00
|
|
|
|
2020-01-05 11:29:27 -05:00
|
|
|
<com.google.android.material.textfield.TextInputLayout
|
2017-01-02 06:09:23 -05:00
|
|
|
android:id="@+id/nav_view_item_wrapper"
|
2020-03-11 19:08:57 -04:00
|
|
|
style="@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox.Dense"
|
2017-01-02 06:09:23 -05:00
|
|
|
android:layout_width="0dp"
|
2020-03-11 19:08:57 -04:00
|
|
|
android:layout_height="wrap_content"
|
2017-01-02 06:09:23 -05:00
|
|
|
android:layout_weight="1"
|
|
|
|
android:gravity="center_vertical|start">
|
|
|
|
|
2020-01-05 11:29:27 -05:00
|
|
|
<com.google.android.material.textfield.TextInputEditText
|
2017-01-02 06:09:23 -05:00
|
|
|
android:id="@+id/nav_view_item"
|
|
|
|
android:layout_width="match_parent"
|
2020-03-11 19:08:57 -04:00
|
|
|
android:layout_height="wrap_content"
|
2017-01-03 09:44:32 -05:00
|
|
|
android:imeOptions="actionDone"
|
2020-02-21 18:43:50 -05:00
|
|
|
android:inputType="text"
|
|
|
|
android:maxLines="1"
|
2017-01-02 06:09:23 -05:00
|
|
|
android:textAppearance="@style/TextAppearance.AppCompat.Body2" />
|
|
|
|
|
2020-01-05 11:29:27 -05:00
|
|
|
</com.google.android.material.textfield.TextInputLayout>
|
2017-01-02 06:09:23 -05:00
|
|
|
|
|
|
|
</LinearLayout>
|