
Completely rework app typography. Today I found out that inter has a tool that allowed you to generate line spacings for a particular font size. Several hours later, I regenerated the entirety of Auxio's typography to use this new system. Moreso, I also tried to eliminate some of the non-standard text styles that I was using prior. That failed. Mostly there's two edge-cases regarding title bolding and the playback view that I simply cannot work through right now, since M3's typography system is horribly restrictive.
14 lines
728 B
XML
14 lines
728 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/accent_recycler"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:paddingStart="@dimen/spacing_medium"
|
|
android:paddingEnd="@dimen/spacing_medium"
|
|
app:layoutManager="org.oxycblt.auxio.ui.accent.AccentGridLayoutManager"
|
|
app:layout_constraintBottom_toTopOf="@+id/accent_cancel"
|
|
app:layout_constraintTop_toBottomOf="@+id/accent_header"
|
|
tools:itemCount="16"
|
|
tools:listitem="@layout/item_accent" />
|