2024-03-17 14:50:15 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2024-03-17 15:40:14 +01:00
|
|
|
<androidx.coordinatorlayout.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2024-03-17 14:50:15 +01:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:fitsSystemWindows="true"
|
|
|
|
android:orientation="vertical"
|
|
|
|
tools:context=".activity.MainActivity">
|
|
|
|
|
|
|
|
<FrameLayout
|
|
|
|
android:id="@+id/container"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2024-06-28 22:19:53 +02:00
|
|
|
android:background="@color/black"
|
2024-03-17 14:50:15 +01:00
|
|
|
tools:ignore="MergeRootFrame" />
|
|
|
|
|
|
|
|
</androidx.coordinatorlayout.widget.CoordinatorLayout>
|