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

30 lines
1.2 KiB
XML
Raw Normal View History

2017-01-02 12:09:23 +01:00
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="?attr/listPreferredItemHeightSmall"
android:paddingLeft="?attr/listPreferredItemPaddingLeft"
android:paddingRight="?attr/listPreferredItemPaddingRight"
android:background="?attr/selectableItemBackground"
android:focusable="true">
<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"
android:maxLines="1"
android:inputType="text"
2017-01-03 15:44:32 +01:00
android:imeOptions="actionDone"
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>