2018-01-16 21:12:03 -08:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<RelativeLayout
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginBottom="12dp"
|
|
|
|
android:background="?attr/selectableItemBackground">
|
|
|
|
|
|
|
|
<RelativeLayout
|
2018-02-07 14:37:05 -08:00
|
|
|
android:id="@+id/lastPlayed"
|
2018-01-16 21:12:03 -08:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:background="?attr/selectableItemBackground"
|
|
|
|
android:clickable="true"
|
|
|
|
android:focusable="true">
|
|
|
|
<ImageView
|
2018-02-07 14:37:05 -08:00
|
|
|
android:id="@+id/lastPlayedIcon"
|
2018-01-16 21:12:03 -08:00
|
|
|
android:layout_width="48dp"
|
|
|
|
android:layout_height="28dp"
|
|
|
|
android:layout_alignParentLeft="true"
|
|
|
|
android:layout_centerVertical="true"
|
|
|
|
android:layout_marginLeft="12dp"
|
|
|
|
android:layout_marginRight="12dp"
|
|
|
|
android:src="?attr/history"
|
|
|
|
tools:ignore="ContentDescription,RtlHardcoded"/>
|
|
|
|
|
|
|
|
<TextView
|
2018-02-07 14:37:05 -08:00
|
|
|
android:id="@+id/lastPlayedText"
|
2018-01-16 21:12:03 -08:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="50dp"
|
2018-02-07 14:37:05 -08:00
|
|
|
android:layout_toRightOf="@+id/lastPlayedIcon"
|
2018-01-16 21:12:03 -08:00
|
|
|
android:gravity="left|center"
|
2018-02-07 14:37:05 -08:00
|
|
|
android:text="@string/title_last_played"
|
2018-01-16 21:12:03 -08:00
|
|
|
android:textAppearance="?android:attr/textAppearanceLarge"
|
|
|
|
android:textSize="15sp"
|
|
|
|
android:textStyle="bold"
|
|
|
|
tools:ignore="RtlHardcoded"/>
|
|
|
|
</RelativeLayout>
|
|
|
|
|
|
|
|
<RelativeLayout
|
2018-02-07 14:37:05 -08:00
|
|
|
android:id="@+id/mostPlayed"
|
2018-01-16 21:12:03 -08:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2018-02-07 14:37:05 -08:00
|
|
|
android:layout_below="@id/lastPlayed"
|
2018-01-16 21:12:03 -08:00
|
|
|
android:background="?attr/selectableItemBackground"
|
|
|
|
android:clickable="true"
|
|
|
|
android:focusable="true">
|
|
|
|
<ImageView
|
2018-02-07 14:37:05 -08:00
|
|
|
android:id="@+id/mostPlayedIcon"
|
2018-01-16 21:12:03 -08:00
|
|
|
android:layout_width="48dp"
|
|
|
|
android:layout_height="28dp"
|
|
|
|
android:layout_alignParentLeft="true"
|
|
|
|
android:layout_centerVertical="true"
|
|
|
|
android:layout_marginLeft="12dp"
|
|
|
|
android:layout_marginRight="12dp"
|
|
|
|
android:src="?attr/filter"
|
|
|
|
tools:ignore="ContentDescription,RtlHardcoded"/>
|
|
|
|
|
|
|
|
<TextView
|
2018-02-07 14:37:05 -08:00
|
|
|
android:id="@+id/mostPlayedText"
|
2018-01-16 21:12:03 -08:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="50dp"
|
2018-02-07 14:37:05 -08:00
|
|
|
android:layout_toRightOf="@+id/mostPlayedIcon"
|
2018-01-16 21:12:03 -08:00
|
|
|
android:gravity="left|center"
|
|
|
|
android:text="@string/title_most_played"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceLarge"
|
|
|
|
android:textSize="15sp"
|
|
|
|
android:textStyle="bold"
|
|
|
|
tools:ignore="RtlHardcoded"/>
|
|
|
|
</RelativeLayout>
|
|
|
|
|
|
|
|
<View
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="1dp"
|
2018-02-07 14:37:05 -08:00
|
|
|
android:layout_below="@+id/mostPlayed"
|
2018-01-16 21:12:03 -08:00
|
|
|
android:layout_marginLeft="8dp"
|
|
|
|
android:layout_marginRight="8dp"
|
|
|
|
android:background="?attr/separator_color"/>
|
|
|
|
|
|
|
|
</RelativeLayout>
|