2018-07-27 18:37:33 +05:30
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2018-09-10 01:14:46 +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-11-05 19:23:07 +05:30
|
|
|
android:id="@+id/parentPanel"
|
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-07-27 18:37:33 +05:30
|
|
|
|
2018-11-05 19:23:07 +05:30
|
|
|
<LinearLayout
|
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-05 19:23:07 +05:30
|
|
|
android:orientation="vertical">
|
2018-07-27 18:37:33 +05:30
|
|
|
|
|
|
|
<FrameLayout
|
2018-09-10 01:14:46 +05:30
|
|
|
android:id="@+id/content_container"
|
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-05 19:23:07 +05:30
|
|
|
<LinearLayout
|
2018-08-30 14:59:30 +05:30
|
|
|
android:layout_width="match_parent"
|
2018-11-05 19:23:07 +05:30
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="0"
|
|
|
|
android:background="@drawable/bg_circular_top_corners"
|
|
|
|
android:orientation="vertical">
|
2018-09-10 01:14:46 +05:30
|
|
|
|
2018-11-05 19:23:07 +05:30
|
|
|
<View
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="1dp"
|
|
|
|
android:background="?dividerColor" />
|
2018-09-10 01:14:46 +05:30
|
|
|
|
|
|
|
<FrameLayout
|
2018-11-05 19:23:07 +05:30
|
|
|
android:id="@+id/mini_player_container"
|
2018-09-10 01:14:46 +05:30
|
|
|
android:layout_width="match_parent"
|
2018-11-05 19:23:07 +05:30
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:visibility="gone">
|
|
|
|
|
|
|
|
<fragment
|
|
|
|
android:id="@+id/mini_player_fragment"
|
|
|
|
android:name="code.name.monkey.retromusic.ui.fragments.MiniPlayerFragment"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="48dp"
|
|
|
|
tools:layout="@layout/fragment_mini_player" />
|
|
|
|
</FrameLayout>
|
|
|
|
|
|
|
|
<com.google.android.material.bottomnavigation.BottomNavigationView
|
|
|
|
android:id="@+id/bottom_navigation"
|
2018-09-10 01:14:46 +05:30
|
|
|
android:layout_width="match_parent"
|
2018-11-05 19:23:07 +05:30
|
|
|
android:layout_height="56dp"
|
|
|
|
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" />
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
</LinearLayout>
|
2018-09-10 01:14:46 +05:30
|
|
|
</androidx.coordinatorlayout.widget.CoordinatorLayout>
|