mirror of
https://github.com/skyline-emu/skyline.git
synced 2025-01-24 06:57:55 +03:00
ee2fdbdf6a
This fixes a Joy-Con Pair bug which caused a crash when a partner device was set to none while being set as a partner. In addition, the following HID service functions were implemented: * GetSupportedNpadStyleSet * ActivateNpadWithRevision * GetNpadJoyHoldType * AcquireNpadStyleSetUpdateEventHandle
19 lines
907 B
XML
19 lines
907 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<com.google.android.material.appbar.AppBarLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
android:id="@+id/toolbar_layout"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:fitsSystemWindows="true"
|
|
app:layout_scrollFlags="scroll|exitUntilCollapsed"
|
|
app:liftOnScroll="true">
|
|
|
|
<com.google.android.material.appbar.MaterialToolbar
|
|
android:id="@+id/toolbar"
|
|
style="@style/Widget.MaterialComponents.Toolbar.Primary"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="?attr/actionBarSize"
|
|
android:theme="@style/AppTheme.ActionBar"
|
|
app:layout_scrollFlags="scroll|enterAlways|snap" />
|
|
</com.google.android.material.appbar.AppBarLayout>
|