
Fix a crash in the accent dialog that would occur because Android Couldn't decipher the module path to the layout manager. Even though this worked perfectly fine before moving the module. Why.
18 lines
No EOL
774 B
XML
18 lines
No EOL
774 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<layout 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">
|
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
android:id="@+id/accent_recycler"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:overScrollMode="never"
|
|
android:paddingTop="@dimen/spacing_small"
|
|
app:layoutManager="org.oxycblt.auxio.accent.AutoGridLayoutManager"
|
|
app:layout_constraintBottom_toTopOf="@+id/accent_cancel"
|
|
app:layout_constraintTop_toBottomOf="@+id/accent_header"
|
|
tools:itemCount="18"
|
|
tools:listitem="@layout/item_accent" />
|
|
|
|
</layout> |