2017-11-12 08:16:51 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2018-01-30 16:06:12 +00:00
|
|
|
|
2020-03-31 07:34:05 +00:00
|
|
|
<LinearLayout 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"
|
2020-10-09 18:24:02 +00:00
|
|
|
android:id="@+id/playlist_control"
|
2018-01-30 16:06:12 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:visibility="invisible"
|
|
|
|
tools:visibility="visible">
|
2017-11-12 08:16:51 +00:00
|
|
|
|
|
|
|
<LinearLayout
|
2018-01-31 02:17:27 +00:00
|
|
|
android:id="@+id/playlist_ctrl_play_bg_button"
|
2017-11-12 08:16:51 +00:00
|
|
|
android:layout_width="match_parent"
|
2018-01-31 02:17:27 +00:00
|
|
|
android:layout_height="@dimen/playlist_ctrl_height"
|
|
|
|
android:layout_weight="1"
|
2020-10-09 18:24:02 +00:00
|
|
|
android:background="?attr/selectableItemBackground"
|
2018-01-31 02:17:27 +00:00
|
|
|
android:clickable="true"
|
|
|
|
android:focusable="true"
|
2020-10-09 18:24:02 +00:00
|
|
|
android:gravity="center">
|
|
|
|
|
2018-01-31 02:17:27 +00:00
|
|
|
<TextView
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2020-10-09 18:24:02 +00:00
|
|
|
android:drawablePadding="4dp"
|
2018-01-31 02:17:27 +00:00
|
|
|
android:gravity="center_vertical"
|
|
|
|
android:text="@string/controls_background_title"
|
|
|
|
android:textColor="?attr/colorAccent"
|
2020-10-09 18:24:02 +00:00
|
|
|
android:textSize="@dimen/channel_rss_title_size"
|
2020-03-31 07:34:05 +00:00
|
|
|
app:drawableLeftCompat="?attr/ic_headset"
|
2020-10-09 18:24:02 +00:00
|
|
|
app:drawableStartCompat="?attr/ic_headset" />
|
2018-01-31 02:17:27 +00:00
|
|
|
</LinearLayout>
|
2017-11-12 08:16:51 +00:00
|
|
|
|
2020-10-09 18:24:02 +00:00
|
|
|
<View
|
|
|
|
android:id="@+id/anchorLeft"
|
2018-01-31 02:17:27 +00:00
|
|
|
android:layout_width="1dp"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_marginTop="@dimen/playlist_ctrl_seperator_margin"
|
2020-10-09 18:24:02 +00:00
|
|
|
android:layout_marginBottom="@dimen/playlist_ctrl_seperator_margin"
|
|
|
|
android:background="?attr/colorAccent"
|
|
|
|
android:clickable="false" />
|
2017-11-12 08:16:51 +00:00
|
|
|
|
2018-01-31 02:17:27 +00:00
|
|
|
<LinearLayout
|
2020-10-09 18:24:02 +00:00
|
|
|
android:id="@+id/playlist_ctrl_play_all_button"
|
2018-01-31 02:17:27 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_weight="1"
|
2020-10-09 18:24:02 +00:00
|
|
|
android:background="?attr/selectableItemBackground"
|
2018-01-31 02:17:27 +00:00
|
|
|
android:clickable="true"
|
|
|
|
android:focusable="true"
|
2020-10-09 18:24:02 +00:00
|
|
|
android:gravity="center">
|
|
|
|
|
2018-01-31 02:17:27 +00:00
|
|
|
<TextView
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
android:text="@string/play_all"
|
2020-10-09 18:24:02 +00:00
|
|
|
android:textColor="?attr/colorAccent"
|
|
|
|
android:textSize="@dimen/channel_rss_title_size" />
|
2017-11-12 08:16:51 +00:00
|
|
|
</LinearLayout>
|
2018-01-30 16:06:12 +00:00
|
|
|
|
2020-10-09 18:24:02 +00:00
|
|
|
<View
|
|
|
|
android:id="@+id/anchorRight"
|
2018-01-31 02:17:27 +00:00
|
|
|
android:layout_width="1dp"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_marginTop="@dimen/playlist_ctrl_seperator_margin"
|
2020-10-09 18:24:02 +00:00
|
|
|
android:layout_marginBottom="@dimen/playlist_ctrl_seperator_margin"
|
|
|
|
android:background="?attr/colorAccent"
|
|
|
|
android:clickable="false" />
|
2018-01-31 02:17:27 +00:00
|
|
|
|
|
|
|
<LinearLayout
|
2020-10-09 18:24:02 +00:00
|
|
|
android:id="@+id/playlist_ctrl_play_popup_button"
|
2018-01-30 16:06:12 +00:00
|
|
|
android:layout_width="match_parent"
|
2018-01-31 02:17:27 +00:00
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_weight="1"
|
2020-10-09 18:24:02 +00:00
|
|
|
android:background="?attr/selectableItemBackground"
|
2018-01-31 02:17:27 +00:00
|
|
|
android:clickable="true"
|
|
|
|
android:focusable="true"
|
2020-10-09 18:24:02 +00:00
|
|
|
android:gravity="center">
|
|
|
|
|
2018-01-31 02:17:27 +00:00
|
|
|
<TextView
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2020-10-09 18:24:02 +00:00
|
|
|
android:drawablePadding="4dp"
|
2018-01-31 02:17:27 +00:00
|
|
|
android:gravity="center_vertical"
|
|
|
|
android:text="@string/controls_popup_title"
|
|
|
|
android:textColor="?attr/colorAccent"
|
2020-10-09 18:24:02 +00:00
|
|
|
android:textSize="@dimen/channel_rss_title_size"
|
2020-03-31 07:34:05 +00:00
|
|
|
app:drawableLeftCompat="?attr/ic_popup"
|
2020-10-09 18:24:02 +00:00
|
|
|
app:drawableStartCompat="?attr/ic_popup" />
|
2018-01-31 02:17:27 +00:00
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|