125 lines
5.7 KiB
XML
125 lines
5.7 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<androidx.coordinatorlayout.widget.CoordinatorLayout 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">
|
|
|
|
<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:descendantFocusability="beforeDescendants"
|
|
android:focusableInTouchMode="true"
|
|
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/albumCoverContainer"
|
|
android:layout_width="0dp"
|
|
android:layout_height="0dp"
|
|
android:layout_marginStart="16dp"
|
|
android:layout_marginTop="8dp"
|
|
android:layout_marginEnd="16dp"
|
|
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[5]" />
|
|
|
|
</com.google.android.material.card.MaterialCardView>
|
|
|
|
<code.name.monkey.retromusic.views.RetroShapeableImageView
|
|
android:id="@+id/artistImage"
|
|
android:layout_width="52dp"
|
|
android:layout_height="52dp"
|
|
android:layout_marginStart="16dp"
|
|
android:layout_marginTop="24dp"
|
|
android:scaleType="centerCrop"
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
app:layout_constraintTop_toBottomOf="@id/albumCoverContainer"
|
|
app:retroCornerSize="26dp"
|
|
tools:srcCompat="@tools:sample/backgrounds/scenic[11]" />
|
|
|
|
<code.name.monkey.retromusic.views.BaselineGridTextView
|
|
android:id="@+id/albumTitle"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginStart="16dp"
|
|
android:layout_marginEnd="16dp"
|
|
android:maxLines="3"
|
|
android:textAppearance="@style/TextViewHeadline4.Compress"
|
|
android:textColor="?android:attr/textColorPrimary"
|
|
android:textStyle="bold"
|
|
app:layout_constrainedWidth="true"
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
app:layout_constraintStart_toEndOf="@id/artistImage"
|
|
app:layout_constraintTop_toTopOf="@id/artistImage"
|
|
tools:ignore="MissingPrefix"
|
|
tools:text="@tools:sample/full_names" />
|
|
|
|
<code.name.monkey.retromusic.views.BaselineGridTextView
|
|
android:id="@+id/albumText"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginStart="16dp"
|
|
android:layout_marginEnd="16dp"
|
|
android:singleLine="true"
|
|
android:textAppearance="@style/TextViewSubtitle1"
|
|
android:textColor="?android:attr/textColorSecondary"
|
|
app:layout_constrainedWidth="true"
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
app:layout_constraintStart_toEndOf="@id/artistImage"
|
|
app:layout_constraintTop_toBottomOf="@id/albumTitle"
|
|
app:lineHeightHint="24sp"
|
|
tools:ignore="MissingPrefix"
|
|
tools:text="@tools:sample/full_names" />
|
|
|
|
<include
|
|
layout="@layout/fragment_album_content"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="12dp"
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
app:layout_constraintTop_toBottomOf="@+id/albumText" />
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
|
</androidx.core.widget.NestedScrollView>
|
|
</androidx.coordinatorlayout.widget.CoordinatorLayout> |