
Re-add the song menu option to the title section of the playback view. This is again, due to the addition of the equalizer button, but also to make this menu easier to reach.
35 lines
1.5 KiB
XML
35 lines
1.5 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<androidx.coordinatorlayout.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:transitionGroup="true"
|
|
android:background="?attr/colorSurface"
|
|
android:orientation="vertical">
|
|
|
|
<org.oxycblt.auxio.ui.AuxioAppBarLayout
|
|
android:id="@+id/settings_appbar"
|
|
style="@style/Widget.Auxio.AppBarLayout"
|
|
android:clickable="true"
|
|
android:focusable="true"
|
|
app:liftOnScroll="true">
|
|
|
|
<com.google.android.material.appbar.MaterialToolbar
|
|
android:id="@+id/settings_toolbar"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
app:navigationIcon="@drawable/ic_back_24"
|
|
app:title="@string/set_title" />
|
|
|
|
</org.oxycblt.auxio.ui.AuxioAppBarLayout>
|
|
|
|
<androidx.fragment.app.FragmentContainerView
|
|
android:id="@+id/settings_list_fragment"
|
|
android:name="org.oxycblt.auxio.settings.SettingsListFragment"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
app:layout_behavior="com.google.android.material.appbar.AppBarLayout$ScrollingViewBehavior"
|
|
tools:layout="@android:layout/preference_category" />
|
|
|
|
</androidx.coordinatorlayout.widget.CoordinatorLayout>
|