2018-11-13 09:00:08 +05:30
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2018-11-20 20:57:59 +05:30
|
|
|
android:id="@+id/main_fragment_content"
|
2018-11-13 09:00:08 +05:30
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
<FrameLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
tools:ignore="UnusedAttribute">
|
|
|
|
|
|
|
|
<include layout="@layout/status_bar" />
|
|
|
|
|
|
|
|
</FrameLayout>
|
|
|
|
|
|
|
|
<androidx.coordinatorlayout.widget.CoordinatorLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent">
|
|
|
|
|
2018-12-04 21:04:26 +05:30
|
|
|
<com.google.android.material.appbar.AppBarLayout
|
2018-11-13 09:00:08 +05:30
|
|
|
android:layout_width="match_parent"
|
2018-12-04 21:04:26 +05:30
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:background="@android:color/transparent"
|
|
|
|
android:elevation="0dp"
|
|
|
|
app:elevation="0dp">
|
2018-11-13 09:00:08 +05:30
|
|
|
|
2018-12-04 21:04:26 +05:30
|
|
|
<com.google.android.material.appbar.CollapsingToolbarLayout
|
2018-11-13 09:00:08 +05:30
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2018-12-04 21:04:26 +05:30
|
|
|
android:background="@android:color/transparent"
|
|
|
|
app:contentScrim="@android:color/transparent"
|
|
|
|
app:layout_scrollFlags="scroll|exitUntilCollapsed"
|
|
|
|
app:statusBarScrim="@color/md_black_1000"
|
|
|
|
app:titleEnabled="false">
|
2018-11-13 09:00:08 +05:30
|
|
|
|
2018-12-04 21:04:26 +05:30
|
|
|
<FrameLayout
|
|
|
|
android:id="@+id/imageContainer"
|
2018-11-13 09:00:08 +05:30
|
|
|
android:layout_width="match_parent"
|
2018-12-04 21:04:26 +05:30
|
|
|
android:layout_height="196dp"
|
|
|
|
app:layout_collapseMode="parallax">
|
2018-11-13 09:00:08 +05:30
|
|
|
|
|
|
|
<ImageView
|
2018-12-04 21:04:26 +05:30
|
|
|
android:id="@+id/bannerImage"
|
2018-11-13 09:00:08 +05:30
|
|
|
android:layout_width="match_parent"
|
2018-12-04 21:04:26 +05:30
|
|
|
android:layout_height="match_parent"
|
2018-11-13 09:00:08 +05:30
|
|
|
android:scaleType="centerCrop"
|
|
|
|
app:layout_collapseMode="parallax"
|
2018-12-04 21:04:26 +05:30
|
|
|
tools:background="@color/md_red_400"
|
2018-11-13 09:00:08 +05:30
|
|
|
tools:ignore="ContentDescription" />
|
2018-12-04 21:04:26 +05:30
|
|
|
</FrameLayout>
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical"
|
|
|
|
app:layout_collapseMode="pin"
|
|
|
|
app:layout_scrollFlags="scroll|enterAlways">
|
|
|
|
|
|
|
|
<FrameLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content">
|
|
|
|
|
|
|
|
<include layout="@layout/status_bar" />
|
|
|
|
</FrameLayout>
|
|
|
|
|
|
|
|
<androidx.appcompat.widget.Toolbar
|
|
|
|
android:id="@+id/toolbar"
|
|
|
|
style="@style/Toolbar"
|
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
app:layout_collapseMode="pin"
|
|
|
|
app:layout_scrollFlags="scroll|enterAlways"
|
|
|
|
tools:ignore="UnusedAttribute">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/bannerTitle"
|
|
|
|
style="@style/BigTitleTextAppearanceToolbar"
|
2019-01-28 16:15:51 +05:30
|
|
|
android:shadowColor="@color/md_black_1000"
|
|
|
|
android:shadowRadius="2"
|
2018-12-04 21:04:26 +05:30
|
|
|
android:text="@string/app_name"
|
2019-01-28 16:15:51 +05:30
|
|
|
android:textColor="@color/md_white_1000"
|
2018-12-04 21:04:26 +05:30
|
|
|
tools:ignore="MissingPrefix" />
|
|
|
|
|
|
|
|
<code.name.monkey.retromusic.views.CircularImageView
|
|
|
|
android:id="@+id/userImage"
|
|
|
|
android:layout_width="32dp"
|
|
|
|
android:layout_height="32dp"
|
|
|
|
android:layout_gravity="end|center_vertical"
|
|
|
|
android:layout_marginEnd="16dp"
|
|
|
|
app:civ_border="false" />
|
|
|
|
</androidx.appcompat.widget.Toolbar>
|
|
|
|
</LinearLayout>
|
|
|
|
</com.google.android.material.appbar.CollapsingToolbarLayout>
|
|
|
|
</com.google.android.material.appbar.AppBarLayout>
|
|
|
|
|
|
|
|
<androidx.core.widget.NestedScrollView
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
app:behavior_overlapTop="52dp"
|
|
|
|
app:layout_behavior="@string/appbar_scrolling_view_behavior">
|
|
|
|
|
|
|
|
<com.google.android.material.card.MaterialCardView
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginStart="64dp"
|
|
|
|
android:layout_marginEnd="64dp"
|
|
|
|
app:cardCornerRadius="12dp">
|
|
|
|
|
|
|
|
<LinearLayout
|
2019-01-14 17:47:22 +05:30
|
|
|
android:id="@+id/contentContainer"
|
2018-12-04 21:04:26 +05:30
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:descendantFocusability="blocksDescendants"
|
|
|
|
android:focusable="true"
|
|
|
|
android:focusableInTouchMode="true"
|
|
|
|
android:orientation="vertical">
|
2018-11-13 09:00:08 +05:30
|
|
|
|
2018-12-04 21:04:26 +05:30
|
|
|
<include layout="@layout/abs_playlists" />
|
2018-11-13 09:00:08 +05:30
|
|
|
|
2019-01-28 16:15:51 +05:30
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
|
|
android:id="@+id/recyclerView"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:nestedScrollingEnabled="false" />
|
2018-12-04 21:04:26 +05:30
|
|
|
</LinearLayout>
|
|
|
|
</com.google.android.material.card.MaterialCardView>
|
2018-11-13 09:00:08 +05:30
|
|
|
</androidx.core.widget.NestedScrollView>
|
|
|
|
</androidx.coordinatorlayout.widget.CoordinatorLayout>
|
|
|
|
</LinearLayout>
|