2017-11-12 09:16:51 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2018-01-30 17:06:12 +01:00
|
|
|
|
2018-01-31 03:17:27 +01:00
|
|
|
<LinearLayout
|
2018-01-30 17:06:12 +01:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2017-11-12 09:16:51 +01:00
|
|
|
android:id="@+id/playlist_control"
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
2018-01-30 17:06:12 +01:00
|
|
|
android:visibility="invisible"
|
|
|
|
tools:visibility="visible">
|
2017-11-12 09:16:51 +01:00
|
|
|
|
|
|
|
<LinearLayout
|
2018-01-31 03:17:27 +01:00
|
|
|
android:id="@+id/playlist_ctrl_play_bg_button"
|
2017-11-12 09:16:51 +01:00
|
|
|
android:layout_width="match_parent"
|
2018-01-31 03:17:27 +01:00
|
|
|
android:layout_height="@dimen/playlist_ctrl_height"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:gravity="center"
|
|
|
|
android:clickable="true"
|
|
|
|
android:focusable="true"
|
|
|
|
android:background="?attr/selectableItemBackground">
|
|
|
|
<TextView
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
android:text="@string/controls_background_title"
|
|
|
|
android:textSize="@dimen/channel_rss_title_size"
|
|
|
|
android:textColor="?attr/colorAccent"
|
|
|
|
android:drawablePadding="4dp"
|
|
|
|
android:drawableLeft="?attr/audio"
|
|
|
|
android:drawableStart="?attr/audio"/>
|
|
|
|
</LinearLayout>
|
2017-11-12 09:16:51 +01:00
|
|
|
|
2018-01-31 03:17:27 +01:00
|
|
|
<View android:id="@+id/anchorLeft"
|
|
|
|
android:layout_width="1dp"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:clickable="false"
|
|
|
|
android:layout_marginBottom="@dimen/playlist_ctrl_seperator_margin"
|
|
|
|
android:layout_marginTop="@dimen/playlist_ctrl_seperator_margin"
|
|
|
|
android:background="?attr/colorAccent"/>
|
2017-11-12 09:16:51 +01:00
|
|
|
|
2018-01-31 03:17:27 +01:00
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:gravity="center"
|
|
|
|
android:clickable="true"
|
|
|
|
android:focusable="true"
|
|
|
|
android:background="?attr/selectableItemBackground"
|
|
|
|
android:id="@+id/playlist_ctrl_play_all_button">
|
|
|
|
<TextView
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
android:text="@string/play_all"
|
|
|
|
android:textSize="@dimen/channel_rss_title_size"
|
|
|
|
android:textColor="?attr/colorAccent"/>
|
2017-11-12 09:16:51 +01:00
|
|
|
</LinearLayout>
|
2018-01-30 17:06:12 +01:00
|
|
|
|
2018-01-31 03:17:27 +01:00
|
|
|
<View android:id="@+id/anchorRight"
|
|
|
|
android:layout_width="1dp"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:clickable="false"
|
|
|
|
android:layout_marginBottom="@dimen/playlist_ctrl_seperator_margin"
|
|
|
|
android:layout_marginTop="@dimen/playlist_ctrl_seperator_margin"
|
|
|
|
android:background="?attr/colorAccent"/>
|
|
|
|
|
|
|
|
<LinearLayout
|
2018-01-30 17:06:12 +01:00
|
|
|
android:layout_width="match_parent"
|
2018-01-31 03:17:27 +01:00
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:gravity="center"
|
|
|
|
android:clickable="true"
|
|
|
|
android:focusable="true"
|
|
|
|
android:background="?attr/selectableItemBackground"
|
|
|
|
android:id="@+id/playlist_ctrl_play_popup_button">
|
|
|
|
<TextView
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
android:text="@string/controls_popup_title"
|
|
|
|
android:textSize="@dimen/channel_rss_title_size"
|
|
|
|
android:textColor="?attr/colorAccent"
|
|
|
|
android:drawablePadding="4dp"
|
|
|
|
android:drawableLeft="?attr/popup"
|
|
|
|
android:drawableStart="?attr/popup"/>
|
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|