
Remove databinding entirely. Databinding was a terrible idea for Auxio. I rarely leveraged it, and when I did, it produced messy code and bloated build times. Dumpster it for just viewbinding, which is good. This reduces building times by nearly 2/3, and generally makes the codebase more coherent and usable.
17 lines
858 B
XML
17 lines
858 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<androidx.recyclerview.widget.RecyclerView 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/accent_recycler"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:overScrollMode="never"
|
|
android:paddingStart="@dimen/spacing_medium"
|
|
android:paddingTop="@dimen/spacing_medium"
|
|
android:paddingEnd="@dimen/spacing_medium"
|
|
android:paddingBottom="@dimen/spacing_small"
|
|
app:layoutManager="org.oxycblt.auxio.accent.AccentGridLayoutManager"
|
|
app:layout_constraintBottom_toTopOf="@+id/accent_cancel"
|
|
app:layout_constraintTop_toBottomOf="@+id/accent_header"
|
|
tools:itemCount="18"
|
|
tools:listitem="@layout/item_accent" />
|