2018-10-16 18:53:02 +00: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:id="@+id/channel_header_layout"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:background="?attr/selectableItemBackground">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/next_stream_title"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2018-12-17 04:33:04 +00:00
|
|
|
android:layout_alignBaseline="@+id/autoplay_switch"
|
2020-10-09 18:24:02 +00:00
|
|
|
android:layout_marginLeft="12dp"
|
2020-09-22 14:46:09 +00:00
|
|
|
android:text="@string/exo_controls_next_description"
|
2018-10-16 18:53:02 +00:00
|
|
|
android:textAppearance="?android:attr/textAppearanceMedium"
|
|
|
|
android:textSize="12sp"
|
|
|
|
tools:ignore="RtlHardcoded" />
|
|
|
|
|
|
|
|
<Switch
|
|
|
|
android:id="@+id/autoplay_switch"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_alignParentTop="true"
|
2020-10-09 18:24:02 +00:00
|
|
|
android:layout_alignParentEnd="true"
|
2018-10-16 18:53:02 +00:00
|
|
|
android:paddingRight="5dp"
|
|
|
|
android:switchPadding="5dp"
|
2020-10-09 18:24:02 +00:00
|
|
|
android:text="@string/auto_queue_toggle"
|
2018-10-16 18:53:02 +00:00
|
|
|
android:textColor="@android:color/tab_indicator_text"
|
2020-10-09 18:24:02 +00:00
|
|
|
android:textSize="12sp" />
|
2018-10-16 18:53:02 +00:00
|
|
|
|
2020-09-08 10:44:58 +00:00
|
|
|
</RelativeLayout>
|