mirror of
https://github.com/cmclark00/RetroMusicPlayer.git
synced 2025-05-17 23:55:21 +01:00
182 lines
7.9 KiB
XML
182 lines
7.9 KiB
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<android.support.design.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:id="@+id/root"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent">
|
||
|
|
||
|
<android.support.v7.widget.AppCompatImageView
|
||
|
android:id="@+id/image"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent"
|
||
|
android:scaleType="centerCrop"
|
||
|
android:transitionName="@string/transition_artist_image" />
|
||
|
|
||
|
<android.support.design.widget.AppBarLayout
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:background="@android:color/transparent">
|
||
|
|
||
|
<android.support.design.widget.CollapsingToolbarLayout
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:background="@android:color/transparent"
|
||
|
app:layout_scrollFlags="scroll|exitUntilCollapsed"
|
||
|
app:titleEnabled="false">
|
||
|
|
||
|
<code.name.monkey.retromusic.views.WidthFitSquareLayout
|
||
|
android:id="@+id/image_container"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
app:layout_collapseMode="parallax" />
|
||
|
|
||
|
<android.support.v7.widget.Toolbar
|
||
|
android:id="@+id/toolbar"
|
||
|
style="@style/Toolbar48"
|
||
|
app:layout_collapseMode="pin" />
|
||
|
</android.support.design.widget.CollapsingToolbarLayout>
|
||
|
</android.support.design.widget.AppBarLayout>
|
||
|
|
||
|
<android.support.v4.widget.NestedScrollView
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent"
|
||
|
android:layout_gravity="fill_vertical"
|
||
|
android:layout_marginEnd="96dp"
|
||
|
android:layout_marginStart="96dp"
|
||
|
android:fillViewport="true"
|
||
|
android:overScrollMode="never"
|
||
|
app:layout_behavior="@string/appbar_scrolling_view_behavior">
|
||
|
|
||
|
<LinearLayout
|
||
|
android:id="@+id/content"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent"
|
||
|
android:background="@drawable/bg_bottom_sheet_dialog_fragment"
|
||
|
android:elevation="@dimen/card_elevation"
|
||
|
android:orientation="vertical">
|
||
|
|
||
|
<LinearLayout
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:gravity="center_vertical"
|
||
|
android:orientation="horizontal"
|
||
|
android:padding="16dp">
|
||
|
|
||
|
<LinearLayout
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_weight="1"
|
||
|
android:orientation="vertical">
|
||
|
|
||
|
<android.support.v7.widget.AppCompatTextView
|
||
|
android:id="@+id/title"
|
||
|
fontPath="@string/circular_std_black"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:maxLines="2"
|
||
|
android:textAppearance="@style/TextAppearance.AppCompat.Title"
|
||
|
tools:ignore="MissingPrefix" />
|
||
|
|
||
|
<android.support.v7.widget.AppCompatTextView
|
||
|
android:id="@+id/text"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_gravity="center"
|
||
|
android:ellipsize="marquee"
|
||
|
android:focusable="true"
|
||
|
android:focusableInTouchMode="true"
|
||
|
android:freezesText="true"
|
||
|
android:marqueeRepeatLimit="marquee_forever"
|
||
|
android:scrollHorizontally="true"
|
||
|
android:singleLine="true"
|
||
|
android:textAppearance="@style/TextAppearance.AppCompat.Subhead"
|
||
|
tools:ignore="MissingPrefix"
|
||
|
tools:text="Title" />
|
||
|
|
||
|
</LinearLayout>
|
||
|
|
||
|
<android.support.design.widget.FloatingActionButton
|
||
|
android:id="@+id/action_shuffle_all"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_margin="8dp"
|
||
|
android:layout_weight="0"
|
||
|
app:srcCompat="@drawable/ic_shuffle_white_24dp" />
|
||
|
</LinearLayout>
|
||
|
|
||
|
<android.support.v7.widget.AppCompatTextView
|
||
|
android:id="@+id/biography_title"
|
||
|
fontPath="@string/circular_std_black"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:paddingBottom="12dp"
|
||
|
android:paddingEnd="24dp"
|
||
|
android:paddingStart="24dp"
|
||
|
android:paddingTop="12dp"
|
||
|
android:text="@string/biography"
|
||
|
android:textAppearance="@style/TextAppearance.AppCompat.Subhead"
|
||
|
android:textColor="?android:attr/textColorPrimary"
|
||
|
android:visibility="gone"
|
||
|
tools:ignore="MissingPrefix" />
|
||
|
|
||
|
<android.support.v7.widget.AppCompatTextView
|
||
|
android:id="@+id/biography"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:ellipsize="end"
|
||
|
android:maxLines="4"
|
||
|
android:padding="16dp"
|
||
|
android:textAppearance="@style/TextAppearance.AppCompat.Body1"
|
||
|
android:visibility="gone" />
|
||
|
|
||
|
<android.support.v7.widget.AppCompatTextView
|
||
|
android:id="@+id/album_title"
|
||
|
fontPath="@string/circular_std_black"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:paddingBottom="12dp"
|
||
|
android:paddingEnd="24dp"
|
||
|
android:paddingStart="24dp"
|
||
|
android:paddingTop="12dp"
|
||
|
android:text="@string/albums"
|
||
|
android:textAppearance="@style/TextAppearance.AppCompat.Subhead"
|
||
|
android:textColor="?android:attr/textColorPrimary" />
|
||
|
|
||
|
<android.support.v7.widget.RecyclerView
|
||
|
android:id="@+id/album_recycler_view"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:nestedScrollingEnabled="false" />
|
||
|
|
||
|
<android.support.v7.widget.AppCompatTextView
|
||
|
android:id="@+id/song_title"
|
||
|
fontPath="@string/circular_std_black"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:paddingBottom="12dp"
|
||
|
android:paddingEnd="24dp"
|
||
|
android:paddingStart="24dp"
|
||
|
android:paddingTop="12dp"
|
||
|
android:text="@string/songs"
|
||
|
android:textAppearance="@style/TextAppearance.AppCompat.Subhead"
|
||
|
android:textColor="?android:attr/textColorPrimary"
|
||
|
tools:ignore="MissingPrefix" />
|
||
|
|
||
|
<android.support.v7.widget.RecyclerView
|
||
|
android:id="@+id/recycler_view"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:nestedScrollingEnabled="false" />
|
||
|
|
||
|
</LinearLayout>
|
||
|
|
||
|
</android.support.v4.widget.NestedScrollView>
|
||
|
|
||
|
<View
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="72dp"
|
||
|
android:background="@drawable/shadow_down_strong" />
|
||
|
|
||
|
</android.support.design.widget.CoordinatorLayout>
|