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
|
|
|
|
2019-10-04 18:29:37 +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"
|
2019-10-04 18:29:37 +05:30
|
|
|
sothree:umanoShadowHeight="0dp">-->
|
|
|
|
|
|
|
|
<FrameLayout
|
|
|
|
android:id="@+id/mainContentFrame"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_weight="1" />
|
|
|
|
|
|
|
|
<com.google.android.material.card.MaterialCardView
|
|
|
|
android:id="@+id/slidingPanel"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
app:behavior_hideable="false"
|
|
|
|
app:behavior_peekHeight="0dp"
|
|
|
|
app:cardElevation="0dp"
|
|
|
|
app:cardUseCompatPadding="false"
|
|
|
|
app:layout_behavior="com.google.android.material.bottomsheet.BottomSheetBehavior">
|
2018-07-27 18:37:33 +05:30
|
|
|
|
|
|
|
|
2018-11-20 20:57:59 +05:30
|
|
|
<FrameLayout
|
2019-10-04 18:29:37 +05:30
|
|
|
android:id="@+id/playerFragmentContainer"
|
2018-08-30 14:59:30 +05:30
|
|
|
android:layout_width="match_parent"
|
2019-10-04 18:29:37 +05:30
|
|
|
android:layout_height="match_parent" />
|
2018-11-20 20:57:59 +05:30
|
|
|
|
2019-10-04 18:29:37 +05:30
|
|
|
<fragment
|
|
|
|
android:id="@+id/miniPlayerFragment"
|
|
|
|
android:name="code.name.monkey.retromusic.fragments.MiniPlayerFragment"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="48dp"
|
|
|
|
tools:layout="@layout/fragment_mini_player" />
|
2018-09-10 01:14:46 +05:30
|
|
|
|
2018-11-20 20:57:59 +05:30
|
|
|
|
2019-10-04 18:29:37 +05:30
|
|
|
</com.google.android.material.card.MaterialCardView>
|
|
|
|
<!-- </com.sothree.slidinguppanel.SlidingUpPanelLayout>-->
|
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"
|
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"
|
2019-10-01 23:32:48 +05:30
|
|
|
android:background="?colorSecondary"
|
2018-11-20 20:57:59 +05:30
|
|
|
android:elevation="0dp"
|
2019-10-04 18:29:37 +05:30
|
|
|
android:visibility="gone"
|
2018-11-20 20:57:59 +05:30
|
|
|
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"
|
2019-09-28 23:22:49 +05:30
|
|
|
app:menu="@menu/bottom_navigation_main"
|
|
|
|
tools:layout_height="56dp" />
|
2019-03-25 18:13:43 +05:30
|
|
|
|
|
|
|
</androidx.coordinatorlayout.widget.CoordinatorLayout>
|