
Split off parsing-related components from extractor into a new parsing module. A lot of these methods are used in non-extractor code, so it makes more sense for them to not be part of the extractors. The code that is really extractor-specific can remain within the extractor files.
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"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:background="?attr/colorSurface"
|
|
android:orientation="vertical"
|
|
android:transitionGroup="true">
|
|
|
|
<org.oxycblt.auxio.ui.CoordinatorAppBarLayout
|
|
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.CoordinatorAppBarLayout>
|
|
|
|
<androidx.fragment.app.FragmentContainerView
|
|
android:id="@+id/settings_list_fragment"
|
|
android:name="org.oxycblt.auxio.settings.prefs.PreferenceFragment"
|
|
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>
|