2018-07-27 13:07:33 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2018-08-01 06:51:27 +00:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:id="@+id/background"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content">
|
|
|
|
|
|
|
|
<RelativeLayout
|
|
|
|
android:id="@+id/image"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_alignBottom="@+id/content"
|
|
|
|
android:layout_alignParentEnd="true">
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/largeIcon"
|
|
|
|
android:layout_width="@dimen/notification_big_image_size"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_alignParentEnd="true"
|
|
|
|
android:layout_centerVertical="true"
|
|
|
|
android:scaleType="centerCrop"
|
2018-09-23 10:04:43 +00:00
|
|
|
/>
|
2018-08-01 06:51:27 +00:00
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/foregroundImage"
|
|
|
|
android:layout_width="96dp"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_alignStart="@id/largeIcon"
|
|
|
|
android:src="@drawable/background_image"
|
|
|
|
tools:tint="@color/md_black_1000"/>
|
|
|
|
|
|
|
|
</RelativeLayout>
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/content"
|
2018-07-27 13:07:33 +00:00
|
|
|
android:layout_width="match_parent"
|
2018-08-01 06:51:27 +00:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_alignParentStart="true"
|
|
|
|
android:paddingTop="8dp"
|
|
|
|
android:paddingBottom="12dp"
|
|
|
|
android:paddingStart="0dp"
|
|
|
|
android:paddingEnd="144dp"
|
|
|
|
android:orientation="vertical">
|
2018-07-27 13:07:33 +00:00
|
|
|
|
|
|
|
<LinearLayout
|
2018-08-01 06:51:27 +00:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginBottom="4dp"
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
android:orientation="horizontal">
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/smallIcon"
|
|
|
|
android:layout_width="16dp"
|
|
|
|
android:layout_height="16dp"
|
|
|
|
android:layout_marginStart="8dp"
|
|
|
|
tools:src="@drawable/ic_audiotrack_black_24dp"
|
|
|
|
tools:tint="@color/md_black_1000"/>
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/appName"
|
|
|
|
android:layout_width="wrap_content"
|
2018-07-27 13:07:33 +00:00
|
|
|
android:layout_height="wrap_content"
|
2018-08-01 06:51:27 +00:00
|
|
|
android:layout_marginStart="4dp"
|
|
|
|
android:ellipsize="end"
|
|
|
|
android:lines="1"
|
|
|
|
android:singleLine="true"
|
|
|
|
android:textSize="13sp"
|
|
|
|
tools:text="@string/app_name"/>
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/arrow"
|
|
|
|
android:layout_width="16dp"
|
|
|
|
android:layout_height="16dp"
|
|
|
|
android:layout_marginStart="2dp"
|
|
|
|
android:scaleType="centerInside"
|
|
|
|
android:src="@drawable/ic_keyboard_arrow_up_24dp"
|
|
|
|
tools:ignore="VectorDrawableCompat"/>
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/title"
|
|
|
|
android:textStyle="bold"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:paddingStart="16dp"
|
|
|
|
android:paddingEnd="0dp"
|
|
|
|
android:ellipsize="end"
|
|
|
|
android:lines="1"
|
|
|
|
android:singleLine="true"
|
|
|
|
tools:text="@string/title_dashboard"/>
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/subtitle"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:paddingStart="16dp"
|
|
|
|
android:paddingEnd="0dp"
|
|
|
|
android:ellipsize="end"
|
|
|
|
android:lines="1"
|
|
|
|
android:singleLine="true"
|
|
|
|
tools:text="@string/title_dashboard"/>
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:orientation="horizontal">
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/action_prev"
|
|
|
|
android:layout_width="42dp"
|
|
|
|
android:layout_height="42dp"
|
|
|
|
android:scaleType="centerInside"/>
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/action_play_pause"
|
|
|
|
android:layout_width="42dp"
|
|
|
|
android:layout_height="42dp"
|
|
|
|
android:scaleType="centerInside"/>
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/action_next"
|
|
|
|
android:layout_width="42dp"
|
|
|
|
android:layout_height="42dp"
|
|
|
|
android:scaleType="centerInside"/>
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/action_quit"
|
|
|
|
android:layout_width="42dp"
|
|
|
|
android:layout_height="42dp"
|
|
|
|
android:scaleType="centerInside"/>
|
2018-07-27 13:07:33 +00:00
|
|
|
</LinearLayout>
|
2018-08-01 06:51:27 +00:00
|
|
|
</LinearLayout>
|
2018-07-27 13:07:33 +00:00
|
|
|
</RelativeLayout>
|