RetroMusicPlayer/app/src/main/res/layout/activity_main_content.xml

28 lines
1 KiB
XML
Raw Normal View History

2018-07-27 18:37:33 +05:30
<?xml version="1.0" encoding="utf-8"?>
2020-08-13 13:54:36 +05:30
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
2020-02-19 00:41:26 +05:30
xmlns:app="http://schemas.android.com/apk/res-auto"
2020-08-13 13:54:36 +05:30
xmlns:tools="http://schemas.android.com/tools"
2018-08-30 14:59:30 +05:30
android:layout_width="match_parent"
2020-02-19 00:41:26 +05:30
android:layout_height="match_parent"
2020-08-13 13:54:36 +05:30
android:background="?colorSurface"
android:orientation="vertical">
2020-02-19 00:41:26 +05:30
2020-08-13 13:54:36 +05:30
<FrameLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:elevation="0dp"
tools:ignore="UnusedAttribute">
<include layout="@layout/status_bar" />
</FrameLayout>
<androidx.fragment.app.FragmentContainerView
android:id="@+id/fragment_container"
android:name="androidx.navigation.fragment.NavHostFragment"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:defaultNavHost="true"
2020-09-25 23:08:59 +05:30
app:layout_behavior="com.google.android.material.appbar.AppBarLayout$ScrollingViewBehavior" />
2020-08-13 13:54:36 +05:30
</LinearLayout>