126 lines
5.7 KiB
XML
126 lines
5.7 KiB
XML
|
<?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"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent"
|
||
|
android:background="?attr/colorSurface"
|
||
|
android:orientation="vertical"
|
||
|
tools:ignore="UnusedAttribute">
|
||
|
|
||
|
<FrameLayout
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content">
|
||
|
|
||
|
<include layout="@layout/status_bar" />
|
||
|
</FrameLayout>
|
||
|
|
||
|
<androidx.coordinatorlayout.widget.CoordinatorLayout
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent">
|
||
|
|
||
|
<com.google.android.material.appbar.AppBarLayout
|
||
|
android:id="@+id/appBarLayout"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
app:liftOnScroll="true">
|
||
|
|
||
|
<FrameLayout
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content">
|
||
|
|
||
|
<com.google.android.material.appbar.MaterialToolbar
|
||
|
android:id="@+id/toolbar"
|
||
|
style="@style/Toolbar"
|
||
|
android:background="?attr/colorSurface"
|
||
|
app:navigationIcon="@drawable/ic_keyboard_backspace_black" />
|
||
|
|
||
|
<ViewStub
|
||
|
android:id="@+id/cab_stub"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="48dp" />
|
||
|
</FrameLayout>
|
||
|
</com.google.android.material.appbar.AppBarLayout>
|
||
|
|
||
|
<androidx.core.widget.NestedScrollView
|
||
|
android:id="@+id/container"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:overScrollMode="never"
|
||
|
app:layout_behavior="com.google.android.material.appbar.AppBarLayout$ScrollingViewBehavior">
|
||
|
|
||
|
<androidx.constraintlayout.widget.ConstraintLayout
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:orientation="vertical">
|
||
|
|
||
|
<com.google.android.material.card.MaterialCardView
|
||
|
android:id="@+id/artistCoverContainer"
|
||
|
android:layout_width="0dp"
|
||
|
android:layout_height="0dp"
|
||
|
android:layout_marginStart="16dp"
|
||
|
android:layout_marginTop="8dp"
|
||
|
android:layout_marginEnd="16dp"
|
||
|
android:transitionName="@string/transition_artist_image"
|
||
|
app:cardCornerRadius="24dp"
|
||
|
app:layout_constraintDimensionRatio="1:1"
|
||
|
app:layout_constraintEnd_toEndOf="parent"
|
||
|
app:layout_constraintStart_toStartOf="parent"
|
||
|
app:layout_constraintTop_toTopOf="parent">
|
||
|
|
||
|
<androidx.appcompat.widget.AppCompatImageView
|
||
|
android:id="@+id/image"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent"
|
||
|
android:scaleType="centerCrop"
|
||
|
tools:srcCompat="@tools:sample/backgrounds/scenic" />
|
||
|
|
||
|
</com.google.android.material.card.MaterialCardView>
|
||
|
|
||
|
|
||
|
<code.name.monkey.retromusic.views.BaselineGridTextView
|
||
|
android:id="@+id/artistTitle"
|
||
|
android:layout_width="0dp"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_marginStart="16dp"
|
||
|
android:layout_marginTop="24dp"
|
||
|
android:layout_marginEnd="16dp"
|
||
|
android:maxLines="2"
|
||
|
android:textAppearance="@style/TextViewHeadline5"
|
||
|
android:textColor="?android:attr/textColorPrimary"
|
||
|
android:textStyle="bold"
|
||
|
app:layout_constraintEnd_toEndOf="parent"
|
||
|
app:layout_constraintStart_toStartOf="parent"
|
||
|
app:layout_constraintTop_toBottomOf="@id/artistCoverContainer"
|
||
|
tools:ignore="MissingPrefix"
|
||
|
tools:text="@tools:sample/full_names" />
|
||
|
|
||
|
<code.name.monkey.retromusic.views.BaselineGridTextView
|
||
|
android:id="@+id/text"
|
||
|
android:layout_width="0dp"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_marginStart="16dp"
|
||
|
android:layout_marginTop="4dp"
|
||
|
android:layout_marginEnd="16dp"
|
||
|
android:textAppearance="@style/TextViewSubtitle2"
|
||
|
android:textColor="?android:attr/textColorSecondary"
|
||
|
app:layout_constraintEnd_toEndOf="parent"
|
||
|
app:layout_constraintStart_toStartOf="parent"
|
||
|
app:layout_constraintTop_toBottomOf="@id/artistTitle"
|
||
|
tools:ignore="MissingPrefix"
|
||
|
tools:text="@tools:sample/full_names" />
|
||
|
|
||
|
<include
|
||
|
layout="@layout/activity_artist_content"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_marginTop="16dp"
|
||
|
app:layout_constraintEnd_toEndOf="parent"
|
||
|
app:layout_constraintStart_toStartOf="parent"
|
||
|
app:layout_constraintTop_toBottomOf="@+id/text" />
|
||
|
|
||
|
|
||
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
||
|
</androidx.core.widget.NestedScrollView>
|
||
|
</androidx.coordinatorlayout.widget.CoordinatorLayout>
|
||
|
</LinearLayout>
|