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

106 lines
4.6 KiB
XML
Raw Normal View History

2018-07-27 13:07:33 +00:00
<?xml version="1.0" encoding="utf-8"?>
2018-08-30 09:29:30 +00:00
<androidx.coordinatorlayout.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
2018-08-08 08:03:38 +00:00
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/root"
2018-07-27 13:07:33 +00:00
android:layout_width="match_parent"
2018-08-08 08:03:38 +00:00
android:layout_height="match_parent">
2018-07-27 13:07:33 +00:00
2018-08-30 09:29:30 +00:00
<com.google.android.material.appbar.AppBarLayout
2018-12-04 15:34:26 +00:00
android:id="@+id/appBarLayout"
2018-07-27 13:07:33 +00:00
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@android:color/transparent"
android:elevation="0dp"
app:elevation="0dp">
2018-08-01 06:51:27 +00:00
2018-08-30 09:29:30 +00:00
<com.google.android.material.appbar.CollapsingToolbarLayout
android:id="@+id/collapsingToolbarLayout"
2018-08-08 08:03:38 +00:00
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:contentScrim="@android:color/transparent"
app:layout_scrollFlags="scroll|exitUntilCollapsed"
app:titleEnabled="false">
<code.name.monkey.retromusic.views.WidthFitSquareLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@android:color/transparent"
app:layout_collapseMode="parallax">
2018-08-30 09:29:30 +00:00
<androidx.appcompat.widget.AppCompatImageView
2018-12-04 15:34:26 +00:00
android:id="@+id/artistImage"
2018-08-08 08:03:38 +00:00
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scaleType="centerCrop"
2019-09-28 17:52:49 +00:00
android:transitionName="@string/transition_artist_image"
tools:srcCompat="@tools:sample/backgrounds/scenic[16]" />
2018-08-08 08:03:38 +00:00
<View
android:layout_width="match_parent"
android:layout_height="72dp"
android:background="@drawable/shadow_down_strong" />
</code.name.monkey.retromusic.views.WidthFitSquareLayout>
2019-09-29 08:37:57 +00:00
<com.google.android.material.appbar.MaterialToolbar
2018-08-08 08:03:38 +00:00
android:id="@+id/toolbar"
2018-12-04 15:34:26 +00:00
style="@style/Toolbar"
2018-08-08 08:03:38 +00:00
app:layout_collapseMode="pin" />
2018-08-30 09:29:30 +00:00
</com.google.android.material.appbar.CollapsingToolbarLayout>
</com.google.android.material.appbar.AppBarLayout>
2018-08-08 08:03:38 +00:00
2018-08-30 09:29:30 +00:00
<androidx.core.widget.NestedScrollView
2018-07-27 13:07:33 +00:00
android:layout_width="match_parent"
android:layout_height="wrap_content"
2018-08-08 08:03:38 +00:00
android:overScrollMode="never"
app:behavior_overlapTop="24dp"
app:layout_behavior="@string/appbar_scrolling_view_behavior">
2018-07-27 13:07:33 +00:00
2019-06-23 20:14:27 +00:00
<com.google.android.material.card.MaterialCardView
android:id="@+id/contentContainer"
2018-07-27 13:07:33 +00:00
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="6dp"
app:cardElevation="8dp"
app:shapeAppearanceOverlay="@style/TopCornerCardView">
2018-08-08 08:03:38 +00:00
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
2019-06-23 20:14:27 +00:00
android:orientation="vertical">
2018-08-08 08:03:38 +00:00
2019-06-23 20:14:27 +00:00
<LinearLayout
2018-08-08 08:03:38 +00:00
android:layout_width="match_parent"
android:layout_height="wrap_content"
2019-06-23 20:14:27 +00:00
android:orientation="vertical"
android:padding="16dp">
2018-11-05 13:53:07 +00:00
2019-09-28 17:52:49 +00:00
<com.google.android.material.textview.MaterialTextView
2019-06-23 20:14:27 +00:00
android:id="@+id/artistTitle"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:maxLines="2"
2019-09-28 17:52:49 +00:00
android:textAppearance="@style/TextViewHeadline6"
2019-10-02 19:07:12 +00:00
android:textStyle="bold"
2019-06-23 20:14:27 +00:00
tools:ignore="MissingPrefix"
tools:text="Title" />
2018-08-08 08:03:38 +00:00
2019-09-28 17:52:49 +00:00
<com.google.android.material.textview.MaterialTextView
2019-06-23 20:14:27 +00:00
android:id="@+id/text"
android:layout_width="match_parent"
android:layout_height="wrap_content"
2019-10-02 19:07:12 +00:00
android:paddingTop="4dp"
2019-09-28 17:52:49 +00:00
android:textAppearance="@style/TextViewSubtitle2"
2019-06-23 20:14:27 +00:00
tools:ignore="MissingPrefix"
tools:text="Title" />
</LinearLayout>
2018-08-08 08:03:38 +00:00
2019-06-23 20:14:27 +00:00
<include layout="@layout/activity_artist_content" />
2018-11-13 03:30:08 +00:00
2019-06-23 20:14:27 +00:00
</LinearLayout>
</com.google.android.material.card.MaterialCardView>
2018-08-30 09:29:30 +00:00
</androidx.core.widget.NestedScrollView>
</androidx.coordinatorlayout.widget.CoordinatorLayout>