43 lines
1.6 KiB
XML
43 lines
1.6 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical"
|
|
android:focusable="true"
|
|
android:background="?attr/selectableItemBackground"
|
|
android:paddingStart="?attr/listPreferredItemPaddingStart"
|
|
android:paddingEnd="?attr/listPreferredItemPaddingEnd">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="?attr/listPreferredItemHeightSmall">
|
|
|
|
<TextView
|
|
android:id="@+id/nav_view_item_text"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center"
|
|
tools:text="Filter:" />
|
|
|
|
<AutoCompleteTextView
|
|
android:id="@+id/nav_view_item"
|
|
style="@style/Theme.Widget.TextInputLayout.OutlinedBox"
|
|
android:layout_width="0dp"
|
|
android:layout_height="match_parent"
|
|
android:layout_weight="1"
|
|
android:completionThreshold="1"
|
|
android:gravity="center_vertical|start"
|
|
android:imeOptions="actionDone"
|
|
android:inputType="textCapWords" />
|
|
</LinearLayout>
|
|
|
|
|
|
<com.google.android.material.chip.ChipGroup
|
|
android:id="@+id/chip_group"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
app:chipSpacingVertical="4dp"
|
|
style="@style/Theme.Widget.Chip"/>
|
|
</LinearLayout> |