mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2026-07-07 20:24:47 -05:00
52 lines
2.1 KiB
XML
52 lines
2.1 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:id="@+id/coordinator_main"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:background="?attr/colorSurface">
|
|
|
|
<com.google.android.material.appbar.AppBarLayout
|
|
android:id="@+id/appbar_settings"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentTop="true"
|
|
app:elevation="0dp">
|
|
|
|
<com.google.android.material.appbar.CollapsingToolbarLayout
|
|
style="?attr/collapsingToolbarLayoutMediumStyle"
|
|
android:id="@+id/toolbar_settings_layout"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="?attr/collapsingToolbarLayoutMediumSize"
|
|
app:contentScrim="@android:color/transparent"
|
|
app:layout_scrollFlags="scroll|exitUntilCollapsed|snap">
|
|
|
|
<com.google.android.material.appbar.MaterialToolbar
|
|
android:id="@+id/toolbar_settings"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="?attr/actionBarSize"
|
|
android:background="?attr/colorSurface"
|
|
app:layout_collapseMode="pin" />
|
|
|
|
</com.google.android.material.appbar.CollapsingToolbarLayout>
|
|
|
|
</com.google.android.material.appbar.AppBarLayout>
|
|
|
|
<FrameLayout
|
|
android:id="@+id/frame_content_settings"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
app:layout_behavior="@string/appbar_scrolling_view_behavior"/>
|
|
|
|
<View
|
|
android:id="@+id/workaround_view"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="0dp"
|
|
android:layout_gravity="bottom"
|
|
android:clickable="true"
|
|
android:focusable="false"
|
|
android:background="@android:color/transparent" />
|
|
|
|
</androidx.coordinatorlayout.widget.CoordinatorLayout>
|