2018-07-27 18:37:33 +05:30
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2020-01-24 22:57:43 +05:30
|
|
|
<androidx.coordinatorlayout.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2018-08-30 14:59:30 +05:30
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2018-07-27 18:37:33 +05:30
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2018-12-09 12:08:34 +05:30
|
|
|
android:id="@+id/mainContent"
|
2019-02-24 01:40:15 +05:30
|
|
|
android:layout_width="match_parent"
|
2018-09-10 01:14:46 +05:30
|
|
|
android:layout_height="match_parent">
|
2018-07-27 18:37:33 +05:30
|
|
|
|
2021-09-12 19:50:33 +05:30
|
|
|
<androidx.fragment.app.FragmentContainerView
|
|
|
|
android:id="@+id/fragment_container"
|
|
|
|
android:name="androidx.navigation.fragment.NavHostFragment"
|
2019-10-04 18:29:37 +05:30
|
|
|
android:layout_width="match_parent"
|
2021-09-12 19:50:33 +05:30
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:background="?colorSurface"
|
|
|
|
app:defaultNavHost="true"
|
|
|
|
app:layout_behavior="com.google.android.material.appbar.AppBarLayout$ScrollingViewBehavior" />
|
2019-10-29 22:26:05 +05:30
|
|
|
|
2020-09-24 02:40:16 +05:30
|
|
|
<View
|
|
|
|
android:id="@+id/dimBackground"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:clickable="true"
|
|
|
|
android:focusable="true"
|
|
|
|
android:visibility="gone" />
|
2019-10-04 18:29:37 +05:30
|
|
|
|
2020-05-11 15:21:22 +05:30
|
|
|
<FrameLayout
|
2019-10-04 18:29:37 +05:30
|
|
|
android:id="@+id/slidingPanel"
|
2021-09-12 01:28:33 +05:30
|
|
|
style="@style/BottomSheetStyle"
|
2019-10-04 18:29:37 +05:30
|
|
|
android:layout_width="match_parent"
|
2020-09-24 02:40:16 +05:30
|
|
|
android:layout_height="wrap_content"
|
2020-08-12 03:01:09 +05:30
|
|
|
app:behavior_hideable="true"
|
2019-10-04 18:29:37 +05:30
|
|
|
app:behavior_peekHeight="0dp"
|
2021-09-16 19:39:38 +05:30
|
|
|
app:gestureInsetBottomIgnored="true"
|
2020-05-11 15:21:22 +05:30
|
|
|
app:layout_behavior="code.name.monkey.retromusic.RetroBottomSheetBehavior">
|
2020-02-17 20:38:20 +05:30
|
|
|
|
2020-09-24 02:25:12 +05:30
|
|
|
<FrameLayout
|
2020-01-24 22:57:43 +05:30
|
|
|
android:id="@+id/playerFragmentContainer"
|
2020-08-11 23:59:44 +05:30
|
|
|
android:layout_width="match_parent"
|
2020-01-24 22:57:43 +05:30
|
|
|
android:layout_height="match_parent" />
|
2020-01-24 22:24:08 +05:30
|
|
|
|
2020-08-11 23:59:44 +05:30
|
|
|
<fragment
|
2020-01-24 22:57:43 +05:30
|
|
|
android:id="@+id/miniPlayerFragment"
|
|
|
|
android:name="code.name.monkey.retromusic.fragments.MiniPlayerFragment"
|
|
|
|
android:layout_width="match_parent"
|
2021-09-09 00:00:20 +05:30
|
|
|
android:layout_height="@dimen/mini_player_height"
|
2020-01-24 22:57:43 +05:30
|
|
|
tools:layout="@layout/fragment_mini_player" />
|
2020-01-24 22:24:08 +05:30
|
|
|
|
2021-09-09 00:00:20 +05:30
|
|
|
<ViewStub
|
|
|
|
android:id="@+id/cast_stub"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2021-09-16 18:29:31 +05:30
|
|
|
android:layout="@layout/cast_controller_layout" />
|
2021-09-09 00:00:20 +05:30
|
|
|
|
2020-05-11 15:21:22 +05:30
|
|
|
</FrameLayout>
|
2018-11-20 20:57:59 +05:30
|
|
|
|
|
|
|
<code.name.monkey.retromusic.views.BottomNavigationBarTinted
|
2018-12-09 12:08:34 +05:30
|
|
|
android:id="@+id/bottomNavigationView"
|
2021-09-26 15:59:32 +05:30
|
|
|
style="@style/Widget.Material3.BottomNavigationView"
|
2019-03-25 18:13:43 +05:30
|
|
|
android:layout_width="match_parent"
|
2021-09-24 13:01:53 +05:30
|
|
|
android:layout_height="@dimen/bottom_nav_height"
|
2018-11-20 20:57:59 +05:30
|
|
|
android:layout_gravity="bottom"
|
|
|
|
android:elevation="0dp"
|
2019-11-21 22:01:39 +05:30
|
|
|
app:itemHorizontalTranslationEnabled="false"
|
2019-09-28 23:22:49 +05:30
|
|
|
app:menu="@menu/bottom_navigation_main"
|
2021-09-26 15:59:32 +05:30
|
|
|
tools:layout_height="wrap_content" />
|
2020-01-24 22:57:43 +05:30
|
|
|
</androidx.coordinatorlayout.widget.CoordinatorLayout>
|