Auxio/app/src/main/res/layout/item_header.xml
OxygenCobalt 51b2749c06 Refactor styles heavily
Move a bunch of UI elements into reusable styles, along with removing literal dimen resources.
2020-12-02 19:03:17 -07:00

18 lines
No EOL
504 B
XML

<?xml version="1.0" encoding="utf-8"?>
<layout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
tools:context=".recycler.viewholders.HeaderViewHolder">
<data>
<variable
name="header"
type="org.oxycblt.auxio.music.Header" />
</data>
<TextView
android:id="@android:id/title"
style="@style/HeaderText"
android:text="@{header.name}"
tools:text="Songs" />
</layout>