108 lines
4.0 KiB
XML
108 lines
4.0 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|||
|
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
|
android:id="@+id/player_subtitle_overlay"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="match_parent"
|
||
|
|
android:background="#70000000"
|
||
|
|
android:clickable="true"
|
||
|
|
android:focusable="true"
|
||
|
|
android:visibility="gone">
|
||
|
|
|
||
|
|
<LinearLayout
|
||
|
|
android:layout_width="520dp"
|
||
|
|
android:layout_height="match_parent"
|
||
|
|
android:layout_gravity="end"
|
||
|
|
android:layout_marginStart="30dp"
|
||
|
|
android:background="@drawable/player_overlay_panel_background"
|
||
|
|
android:orientation="vertical"
|
||
|
|
android:paddingStart="34dp"
|
||
|
|
android:paddingTop="32dp"
|
||
|
|
android:paddingEnd="34dp"
|
||
|
|
android:paddingBottom="26dp">
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:letterSpacing="0.14"
|
||
|
|
android:text="@string/player_playback_options"
|
||
|
|
android:textColor="#FF52B54B"
|
||
|
|
android:textSize="11sp"
|
||
|
|
android:textStyle="bold" />
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_marginTop="7dp"
|
||
|
|
android:text="@string/player_subtitles"
|
||
|
|
android:textColor="#FFFFFFFF"
|
||
|
|
android:textSize="30sp"
|
||
|
|
android:textStyle="bold" />
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_marginTop="7dp"
|
||
|
|
android:lineSpacingExtra="2dp"
|
||
|
|
android:text="@string/player_subtitle_overlay_hint"
|
||
|
|
android:textColor="#AFFFFFFF"
|
||
|
|
android:textSize="14sp" />
|
||
|
|
|
||
|
|
<ScrollView
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="0dp"
|
||
|
|
android:layout_marginTop="24dp"
|
||
|
|
android:layout_weight="1"
|
||
|
|
android:clipToPadding="false"
|
||
|
|
android:fillViewport="true"
|
||
|
|
android:overScrollMode="never">
|
||
|
|
|
||
|
|
<LinearLayout
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:orientation="vertical">
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:letterSpacing="0.12"
|
||
|
|
android:text="@string/player_subtitle_track"
|
||
|
|
android:textColor="#8FFFFFFF"
|
||
|
|
android:textSize="11sp"
|
||
|
|
android:textStyle="bold" />
|
||
|
|
|
||
|
|
<LinearLayout
|
||
|
|
android:id="@+id/player_subtitle_tracks"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_marginTop="9dp"
|
||
|
|
android:orientation="vertical" />
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_marginTop="25dp"
|
||
|
|
android:letterSpacing="0.12"
|
||
|
|
android:text="@string/player_text_size"
|
||
|
|
android:textColor="#8FFFFFFF"
|
||
|
|
android:textSize="11sp"
|
||
|
|
android:textStyle="bold" />
|
||
|
|
|
||
|
|
<LinearLayout
|
||
|
|
android:id="@+id/player_subtitle_sizes"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_marginTop="9dp"
|
||
|
|
android:orientation="vertical" />
|
||
|
|
</LinearLayout>
|
||
|
|
</ScrollView>
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_marginTop="14dp"
|
||
|
|
android:text="@string/player_back_to_close"
|
||
|
|
android:textColor="#78FFFFFF"
|
||
|
|
android:textSize="12sp" />
|
||
|
|
</LinearLayout>
|
||
|
|
</FrameLayout>
|