summaryrefslogtreecommitdiffstats
path: root/src/android/app/src/main/res/layout-w600dp/activity_main.xml
diff options
context:
space:
mode:
authorCharles Lombardo <clombardo169@gmail.com>2023-05-01 08:26:47 +0200
committerbunnei <bunneidev@gmail.com>2023-06-03 09:05:57 +0200
commit9f6f21946c8e755093827ec3dfc7cb281a59381d (patch)
treebbc050b670bd82a2b0b6c56eff2942df37441955 /src/android/app/src/main/res/layout-w600dp/activity_main.xml
parentandroid: Search Fragment (diff)
downloadyuzu-9f6f21946c8e755093827ec3dfc7cb281a59381d.tar
yuzu-9f6f21946c8e755093827ec3dfc7cb281a59381d.tar.gz
yuzu-9f6f21946c8e755093827ec3dfc7cb281a59381d.tar.bz2
yuzu-9f6f21946c8e755093827ec3dfc7cb281a59381d.tar.lz
yuzu-9f6f21946c8e755093827ec3dfc7cb281a59381d.tar.xz
yuzu-9f6f21946c8e755093827ec3dfc7cb281a59381d.tar.zst
yuzu-9f6f21946c8e755093827ec3dfc7cb281a59381d.zip
Diffstat (limited to 'src/android/app/src/main/res/layout-w600dp/activity_main.xml')
-rw-r--r--src/android/app/src/main/res/layout-w600dp/activity_main.xml46
1 files changed, 46 insertions, 0 deletions
diff --git a/src/android/app/src/main/res/layout-w600dp/activity_main.xml b/src/android/app/src/main/res/layout-w600dp/activity_main.xml
new file mode 100644
index 000000000..39b61a13e
--- /dev/null
+++ b/src/android/app/src/main/res/layout-w600dp/activity_main.xml
@@ -0,0 +1,46 @@
+<?xml version="1.0" encoding="utf-8"?>
+<androidx.constraintlayout.widget.ConstraintLayout
+ 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:id="@+id/coordinator_main"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent">
+
+ <androidx.fragment.app.FragmentContainerView
+ android:id="@+id/fragment_container"
+ android:name="androidx.navigation.fragment.NavHostFragment"
+ android:layout_width="0dp"
+ android:layout_height="0dp"
+ app:defaultNavHost="true"
+ app:layout_constraintBottom_toBottomOf="parent"
+ app:layout_constraintEnd_toEndOf="parent"
+ app:layout_constraintStart_toStartOf="parent"
+ app:layout_constraintTop_toTopOf="parent"
+ app:navGraph="@navigation/home_navigation"
+ tools:layout="@layout/fragment_games" />
+
+ <com.google.android.material.navigationrail.NavigationRailView
+ android:id="@+id/navigation_view"
+ android:layout_width="wrap_content"
+ android:layout_height="match_parent"
+ android:visibility="invisible"
+ app:layout_constraintBottom_toBottomOf="parent"
+ app:layout_constraintStart_toStartOf="parent"
+ app:layout_constraintTop_toTopOf="parent"
+ app:labelVisibilityMode="selected"
+ app:menu="@menu/menu_navigation"
+ tools:visibility="visible" />
+
+ <View
+ android:id="@+id/status_bar_shade"
+ android:layout_width="0dp"
+ android:layout_height="1px"
+ android:background="@android:color/transparent"
+ android:clickable="false"
+ android:focusable="false"
+ app:layout_constraintTop_toTopOf="parent"
+ app:layout_constraintEnd_toEndOf="parent"
+ app:layout_constraintStart_toStartOf="parent" />
+
+</androidx.constraintlayout.widget.ConstraintLayout>