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"
|
2020-04-18 14:47:22 -04:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2017-01-02 06:09:23 -05:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="?attr/listPreferredItemHeightSmall"
|
|
|
|
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
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/nav_view_item_text"
|
|
|
|
android:layout_width="wrap_content"
|
2020-04-10 15:23:29 -04:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center"
|
|
|
|
tools:text="Filter:" />
|
2017-01-02 06:09:23 -05:00
|
|
|
|
|
|
|
<Spinner
|
|
|
|
android:id="@+id/nav_view_item"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:gravity="center_vertical|start"
|
|
|
|
android:maxLines="1"
|
|
|
|
android:textAppearance="@style/TextAppearance.AppCompat.Body2" />
|
|
|
|
|
|
|
|
</LinearLayout>
|