PlayerAndroid/app/src/main/res/layout/sliding_music_panel_layout.xml

59 lines
2.5 KiB
XML
Raw Normal View History

2018-07-27 13:07:33 +00:00
<?xml version="1.0" encoding="utf-8"?>
2018-09-09 19:44:46 +00:00
<androidx.coordinatorlayout.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
2018-08-30 09:29:30 +00:00
xmlns:app="http://schemas.android.com/apk/res-auto"
2018-07-27 13:07:33 +00:00
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
2018-11-20 15:27:59 +00:00
android:id="@+id/main_content"
2018-09-09 19:44:46 +00:00
android:layout_height="match_parent">
2018-07-27 13:07:33 +00:00
2018-11-20 15:27:59 +00:00
<com.sothree.slidinguppanel.SlidingUpPanelLayout xmlns:sothree="http://schemas.android.com/apk/res-auto"
android:id="@+id/sliding_layout"
2018-07-27 13:07:33 +00:00
android:layout_width="match_parent"
2018-09-09 19:44:46 +00:00
android:layout_height="match_parent"
2018-11-20 15:27:59 +00:00
android:gravity="bottom"
sothree:umanoOverlay="false"
sothree:umanoPanelHeight="0dp"
sothree:umanoScrollableView="@+id/recycler_view"
sothree:umanoShadowHeight="0dp">
2018-07-27 13:07:33 +00:00
<FrameLayout
2018-09-09 19:44:46 +00:00
android:id="@+id/content_container"
2018-07-27 13:07:33 +00:00
android:layout_width="match_parent"
2018-11-05 13:53:07 +00:00
android:layout_height="match_parent"
android:layout_weight="1" />
2018-07-27 13:07:33 +00:00
2018-11-20 15:27:59 +00:00
<FrameLayout
android:id="@+id/sliding_panel"
2018-08-30 09:29:30 +00:00
android:layout_width="match_parent"
2018-11-20 15:27:59 +00:00
android:layout_height="match_parent">
2018-09-09 19:44:46 +00:00
<FrameLayout
2018-11-20 15:27:59 +00:00
android:id="@+id/player_fragment_container"
2018-09-09 19:44:46 +00:00
android:layout_width="match_parent"
2018-11-20 15:27:59 +00:00
android:layout_height="match_parent" />
<fragment
android:id="@+id/mini_player_fragment"
android:name="code.name.monkey.retromusic.ui.fragments.MiniPlayerFragment"
2018-09-09 19:44:46 +00:00
android:layout_width="match_parent"
2018-11-20 15:27:59 +00:00
android:layout_height="48dp"
tools:layout="@layout/fragment_mini_player" />
</FrameLayout>
</com.sothree.slidinguppanel.SlidingUpPanelLayout>
<code.name.monkey.retromusic.views.BottomNavigationBarTinted
android:id="@+id/bottom_navigation"
android:layout_width="match_parent"
android:layout_height="56dp"
android:layout_gravity="bottom"
android:elevation="0dp"
app:elevation="0dp"
app:itemIconTint="@drawable/bottom_navigation_item_colors"
app:itemTextAppearanceActive="@style/BottomSheetTextAppearance"
app:itemTextAppearanceInactive="@style/BottomSheetTextAppearance"
app:itemTextColor="@drawable/bottom_navigation_item_colors"
app:labelVisibilityMode="labeled"
app:menu="@menu/bottom_navigation_main" />
</androidx.coordinatorlayout.widget.CoordinatorLayout>