2018-07-27 18:37:33 +05:30
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2019-03-25 18:13: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
|
|
|
|
2018-11-20 20:57:59 +05:30
|
|
|
<com.sothree.slidinguppanel.SlidingUpPanelLayout xmlns:sothree="http://schemas.android.com/apk/res-auto"
|
2018-12-09 12:08:34 +05:30
|
|
|
android:id="@+id/slidingLayout"
|
2018-07-27 18:37:33 +05:30
|
|
|
android:layout_width="match_parent"
|
2018-09-10 01:14:46 +05:30
|
|
|
android:layout_height="match_parent"
|
2018-11-20 20:57:59 +05:30
|
|
|
android:gravity="bottom"
|
|
|
|
sothree:umanoOverlay="false"
|
|
|
|
sothree:umanoPanelHeight="0dp"
|
|
|
|
sothree:umanoScrollableView="@+id/recycler_view"
|
|
|
|
sothree:umanoShadowHeight="0dp">
|
2018-07-27 18:37:33 +05:30
|
|
|
|
|
|
|
<FrameLayout
|
2018-12-09 12:08:34 +05:30
|
|
|
android:id="@+id/mainContentFrame"
|
2018-07-27 18:37:33 +05:30
|
|
|
android:layout_width="match_parent"
|
2018-11-05 19:23:07 +05:30
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_weight="1" />
|
2018-07-27 18:37:33 +05:30
|
|
|
|
2018-11-20 20:57:59 +05:30
|
|
|
<FrameLayout
|
2018-12-09 12:08:34 +05:30
|
|
|
android:id="@+id/slidingPanel"
|
2018-08-30 14:59:30 +05:30
|
|
|
android:layout_width="match_parent"
|
2018-11-20 20:57:59 +05:30
|
|
|
android:layout_height="match_parent">
|
|
|
|
|
2018-09-10 01:14:46 +05:30
|
|
|
|
|
|
|
<FrameLayout
|
2018-12-09 12:08:34 +05:30
|
|
|
android:id="@+id/playerFragmentContainer"
|
2018-09-10 01:14:46 +05:30
|
|
|
android:layout_width="match_parent"
|
2018-11-20 20:57:59 +05:30
|
|
|
android:layout_height="match_parent" />
|
|
|
|
|
|
|
|
<fragment
|
2018-12-09 12:08:34 +05:30
|
|
|
android:id="@+id/miniPlayerFragment"
|
2019-04-20 10:59:45 +05:30
|
|
|
android:name="code.name.monkey.retromusic.fragments.MiniPlayerFragment"
|
2018-09-10 01:14:46 +05:30
|
|
|
android:layout_width="match_parent"
|
2018-11-20 20:57:59 +05:30
|
|
|
android:layout_height="48dp"
|
|
|
|
tools:layout="@layout/fragment_mini_player" />
|
|
|
|
|
|
|
|
</FrameLayout>
|
|
|
|
</com.sothree.slidinguppanel.SlidingUpPanelLayout>
|
|
|
|
|
|
|
|
<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"
|
2019-09-01 19:02:36 +05:30
|
|
|
android:layout_height="wrap_content"
|
2018-11-20 20:57:59 +05:30
|
|
|
android:layout_gravity="bottom"
|
|
|
|
android:elevation="0dp"
|
|
|
|
app:elevation="0dp"
|
|
|
|
app:itemIconTint="@drawable/bottom_navigation_item_colors"
|
2019-09-02 20:21:53 +05:30
|
|
|
app:itemTextAppearanceActive="@style/BottomSheetItemTextAppearanceActive"
|
|
|
|
app:itemTextAppearanceInactive="@style/BottomSheetItemTextAppearanceInactive"
|
2018-11-20 20:57:59 +05:30
|
|
|
app:itemTextColor="@drawable/bottom_navigation_item_colors"
|
|
|
|
app:labelVisibilityMode="labeled"
|
|
|
|
app:menu="@menu/bottom_navigation_main" />
|
2019-03-25 18:13:43 +05:30
|
|
|
|
|
|
|
</androidx.coordinatorlayout.widget.CoordinatorLayout>
|