
Use basic scroll indicators when a dialog shows a list. Mostly for material guidelines. Excluded dialogs and int pref dialog have not been modified, as I am still working on revamping those.
12 lines
622 B
XML
12 lines
622 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<org.oxycblt.auxio.ui.DialogRecyclerView 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:id="@+id/tab_recycler"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
app:layoutManager="androidx.recyclerview.widget.LinearLayoutManager"
|
|
app:layout_constraintBottom_toTopOf="@+id/accent_cancel"
|
|
app:layout_constraintTop_toBottomOf="@+id/accent_header"
|
|
tools:itemCount="5"
|
|
tools:listitem="@layout/item_tab" />
|