mirror of
https://github.com/skyline-emu/skyline.git
synced 2025-01-24 14:27:55 +03:00
4d787c904e
This commit makes a few improvements to the UI/UX: * Crop Game Icons to ImageView * Controller Support for Game List * EmulationActivity is fullscreen now
18 lines
865 B
XML
18 lines
865 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:descendantFocusability="afterDescendants"
|
|
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>
|