tachiyomi/app/src/main/res/layout/navigation_view_text.xml

29 lines
1.1 KiB
XML
Raw Normal View History

2017-01-02 12:09:23 +01:00
<?xml version="1.0" encoding="utf-8"?>
2020-02-22 00:43:50 +01:00
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
2017-01-02 12:09:23 +01:00
android:layout_width="match_parent"
android:layout_height="?attr/listPreferredItemHeightSmall"
android:background="?attr/selectableItemBackground"
2020-02-22 00:43:50 +01:00
android:focusable="true"
android:paddingStart="?attr/listPreferredItemPaddingStart"
android:paddingEnd="?attr/listPreferredItemPaddingEnd">
2017-01-02 12:09:23 +01:00
<com.google.android.material.textfield.TextInputLayout
2017-01-02 12:09:23 +01:00
android:id="@+id/nav_view_item_wrapper"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:gravity="center_vertical|start">
<com.google.android.material.textfield.TextInputEditText
2017-01-02 12:09:23 +01:00
android:id="@+id/nav_view_item"
android:layout_width="match_parent"
android:layout_height="match_parent"
2017-01-03 15:44:32 +01:00
android:imeOptions="actionDone"
2020-02-22 00:43:50 +01:00
android:inputType="text"
android:maxLines="1"
2017-01-02 12:09:23 +01:00
android:textAppearance="@style/TextAppearance.AppCompat.Body2" />
</com.google.android.material.textfield.TextInputLayout>
2017-01-02 12:09:23 +01:00
</LinearLayout>