86 lines
No EOL
3.3 KiB
XML
86 lines
No EOL
3.3 KiB
XML
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:background="?attr/navigation_drawer_background_color"
|
|
android:clickable="true"
|
|
android:orientation="vertical">
|
|
|
|
<RelativeLayout
|
|
android:id="@+id/header"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="@dimen/navigation_drawer_image_height"
|
|
android:background="?selectableItemBackground"
|
|
android:clickable="true">
|
|
|
|
<ImageView
|
|
android:transitionName="@string/transition_album_cover"
|
|
android:id="@+id/album_art"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="@dimen/navigation_drawer_image_height"
|
|
android:layout_alignParentTop="true"
|
|
android:scaleType="centerCrop"
|
|
android:src="@drawable/default_album_art"
|
|
tools:ignore="ContentDescription,UnusedAttribute" />
|
|
|
|
<View
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_alignParentBottom="true"
|
|
android:background="@drawable/shadow_up" />
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="56dp"
|
|
android:layout_alignParentBottom="true"
|
|
android:layout_marginBottom="8dp"
|
|
android:gravity="center_vertical"
|
|
android:orientation="vertical">
|
|
|
|
<TextView
|
|
android:id="@+id/song_title"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginLeft="16dp"
|
|
android:layout_marginRight="16dp"
|
|
android:fontFamily="sans-serif-medium"
|
|
android:singleLine="true"
|
|
android:textAppearance="@style/TextAppearance.AppCompat.Subhead"
|
|
android:textColor="@color/white"
|
|
android:textSize="14sp" />
|
|
|
|
<TextView
|
|
android:id="@+id/song_artist"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginLeft="16dp"
|
|
android:layout_marginRight="16dp"
|
|
android:fontFamily="sans-serif"
|
|
android:singleLine="true"
|
|
android:text="@string/nothing_playing"
|
|
android:textAppearance="@style/TextAppearance.AppCompat.Body1"
|
|
android:textColor="@android:color/white"
|
|
android:textSize="14sp" />
|
|
|
|
</LinearLayout>
|
|
|
|
<Button
|
|
android:id="@+id/header_clickable"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:background="?selectableItemBackground"
|
|
android:clickable="true"
|
|
android:soundEffectsEnabled="true" />
|
|
|
|
</RelativeLayout>
|
|
|
|
<android.support.v7.widget.RecyclerView
|
|
android:id="@+id/navigation_drawer_list"
|
|
android:scrollbars="vertical"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:paddingTop="8dp"
|
|
android:paddingBottom="8dp"
|
|
android:clipToPadding="false" />
|
|
|
|
</LinearLayout> |