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
|
|
|
|
2019-10-04 18:29:37 +05:30
|
|
|
<FrameLayout
|
|
|
|
android:id="@+id/mainContentFrame"
|
|
|
|
android:layout_width="match_parent"
|
2019-10-29 22:26:05 +05:30
|
|
|
android:layout_height="match_parent" />
|
|
|
|
|
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"
|
2020-08-23 13:31:42 +05:30
|
|
|
style="@style/Widget.BottomSheet"
|
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"
|
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"
|
|
|
|
android:layout="@layout/cast_controller_layout"/>
|
|
|
|
|
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"
|
2019-03-25 18:13:43 +05:30
|
|
|
android:layout_width="match_parent"
|
2020-08-13 18:06:24 +05:30
|
|
|
android:layout_height="56dp"
|
2018-11-20 20:57:59 +05:30
|
|
|
android:layout_gravity="bottom"
|
2020-10-02 23:35:09 +05:30
|
|
|
android:background="?attr/colorSurface"
|
2018-11-20 20:57:59 +05:30
|
|
|
android:elevation="0dp"
|
2019-11-21 22:01:39 +05:30
|
|
|
app:itemHorizontalTranslationEnabled="false"
|
2018-11-20 20:57:59 +05:30
|
|
|
app:itemIconTint="@drawable/bottom_navigation_item_colors"
|
2020-05-10 01:20:49 +05:30
|
|
|
app:itemTextAppearanceActive="@style/BottomSheetItemTextAppearance"
|
|
|
|
app:itemTextAppearanceInactive="@style/BottomSheetItemTextAppearance"
|
2018-11-20 20:57:59 +05:30
|
|
|
app:itemTextColor="@drawable/bottom_navigation_item_colors"
|
|
|
|
app:labelVisibilityMode="labeled"
|
2019-09-28 23:22:49 +05:30
|
|
|
app:menu="@menu/bottom_navigation_main"
|
|
|
|
tools:layout_height="56dp" />
|
2020-01-24 22:57:43 +05:30
|
|
|
</androidx.coordinatorlayout.widget.CoordinatorLayout>
|