mirror of
https://github.com/skyline-emu/skyline.git
synced 2024-11-17 21:09:19 +01:00
22 lines
881 B
XML
22 lines
881 B
XML
|
<LinearLayout 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="wrap_content"
|
||
|
android:orientation="vertical">
|
||
|
|
||
|
<androidx.appcompat.widget.Toolbar
|
||
|
android:id="@+id/toolbar"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:background="?attr/colorPrimary"
|
||
|
android:minHeight="?attr/actionBarSize"
|
||
|
android:theme="@style/ThemeOverlay.AppCompat.Dark"
|
||
|
app:layout_constraintEnd_toEndOf="parent"
|
||
|
app:layout_constraintStart_toStartOf="parent"
|
||
|
app:layout_constraintTop_toTopOf="parent" />
|
||
|
|
||
|
<FrameLayout
|
||
|
android:id="@+id/settings"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent" />
|
||
|
</LinearLayout>
|