2018-07-27 18:37:33 +05:30
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2018-08-30 14:59:30 +05:30
|
|
|
<androidx.coordinatorlayout.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2019-06-24 01:44:27 +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"
|
|
|
|
android:id="@+id/root"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent">
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:orientation="horizontal">
|
|
|
|
|
|
|
|
<FrameLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_weight="1">
|
|
|
|
|
2018-12-04 21:04:26 +05:30
|
|
|
<androidx.appcompat.widget.AppCompatImageView
|
|
|
|
android:id="@+id/artistImage"
|
2018-07-27 18:37:33 +05:30
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:scaleType="centerCrop"
|
2019-09-28 23:22:49 +05:30
|
|
|
android:transitionName="@string/transition_album_art"
|
|
|
|
tools:srcCompat="@tools:sample/backgrounds/scenic[16]" />
|
2018-07-27 18:37:33 +05:30
|
|
|
|
2019-09-29 14:07:57 +05:30
|
|
|
<com.google.android.material.appbar.MaterialToolbar
|
2018-07-27 18:37:33 +05:30
|
|
|
android:id="@+id/toolbar"
|
2018-12-04 21:04:26 +05:30
|
|
|
style="@style/Toolbar" />
|
2018-11-05 19:23:07 +05:30
|
|
|
|
2018-11-13 09:00:08 +05:30
|
|
|
|
2018-07-27 18:37:33 +05:30
|
|
|
</FrameLayout>
|
|
|
|
|
2018-08-30 14:59:30 +05:30
|
|
|
<androidx.core.widget.NestedScrollView
|
2018-07-27 18:37:33 +05:30
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:overScrollMode="never">
|
|
|
|
|
2019-06-24 01:44:27 +05:30
|
|
|
<com.google.android.material.card.MaterialCardView
|
|
|
|
android:id="@+id/contentContainer"
|
2018-07-27 18:37:33 +05:30
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2019-10-12 02:31:39 +05:30
|
|
|
app:cardElevation="8dp"
|
|
|
|
android:layout_marginTop="6dp"
|
|
|
|
app:shapeAppearanceOverlay="@style/TopCornerCardView">
|
2018-07-27 18:37:33 +05:30
|
|
|
|
2019-01-02 09:25:55 +05:30
|
|
|
<LinearLayout
|
2018-07-27 18:37:33 +05:30
|
|
|
android:layout_width="match_parent"
|
2019-01-02 09:25:55 +05:30
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical">
|
2018-07-27 18:37:33 +05:30
|
|
|
|
|
|
|
<LinearLayout
|
2019-06-24 01:44:27 +05:30
|
|
|
android:id="@+id/background"
|
2018-07-27 18:37:33 +05:30
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2019-06-24 01:44:27 +05:30
|
|
|
android:orientation="vertical">
|
2018-07-27 18:37:33 +05:30
|
|
|
|
2019-06-24 01:44:27 +05:30
|
|
|
<LinearLayout
|
2019-01-02 09:25:55 +05:30
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2019-06-24 01:44:27 +05:30
|
|
|
android:orientation="vertical"
|
|
|
|
android:padding="16dp">
|
|
|
|
|
2019-09-28 23:22:49 +05:30
|
|
|
<com.google.android.material.textview.MaterialTextView
|
2019-06-24 01:44:27 +05:30
|
|
|
android:id="@+id/artistTitle"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:maxLines="2"
|
2019-09-28 23:22:49 +05:30
|
|
|
android:textAppearance="@style/TextViewHeadline6"
|
2019-10-03 00:37:12 +05:30
|
|
|
android:textStyle="bold"
|
2019-06-24 01:44:27 +05:30
|
|
|
tools:ignore="MissingPrefix"
|
|
|
|
tools:text="Title" />
|
|
|
|
|
2019-09-28 23:22:49 +05:30
|
|
|
<com.google.android.material.textview.MaterialTextView
|
2019-06-24 01:44:27 +05:30
|
|
|
android:id="@+id/text"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2019-10-12 02:31:39 +05:30
|
|
|
android:paddingTop="4dp"
|
2019-09-28 23:22:49 +05:30
|
|
|
android:textAppearance="@style/TextViewSubtitle2"
|
2019-06-24 01:44:27 +05:30
|
|
|
tools:ignore="MissingPrefix"
|
|
|
|
tools:text="Title" />
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<include layout="@layout/activity_artist_content" />
|
2018-07-27 18:37:33 +05:30
|
|
|
</LinearLayout>
|
2019-01-02 09:25:55 +05:30
|
|
|
|
2019-06-24 01:44:27 +05:30
|
|
|
<View
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="@dimen/status_bar_padding" />
|
2019-04-05 11:22:42 +05:30
|
|
|
|
2019-06-24 01:44:27 +05:30
|
|
|
</LinearLayout>
|
|
|
|
</com.google.android.material.card.MaterialCardView>
|
2018-08-30 14:59:30 +05:30
|
|
|
</androidx.core.widget.NestedScrollView>
|
2018-07-27 18:37:33 +05:30
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<View
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="72dp"
|
|
|
|
android:background="@drawable/shadow_down_strong" />
|
2019-04-05 11:22:42 +05:30
|
|
|
|
2018-08-30 14:59:30 +05:30
|
|
|
</androidx.coordinatorlayout.widget.CoordinatorLayout>
|