74 lines
2.6 KiB
XML
74 lines
2.6 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|||
|
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
|
android:id="@+id/player_cast_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="match_parent"
|
||
|
|
android:layout_height="340dp"
|
||
|
|
android:layout_gravity="bottom"
|
||
|
|
android:background="@drawable/player_overlay_panel_background"
|
||
|
|
android:orientation="vertical"
|
||
|
|
android:paddingStart="48dp"
|
||
|
|
android:paddingTop="25dp"
|
||
|
|
android:paddingEnd="48dp"
|
||
|
|
android:paddingBottom="22dp">
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:letterSpacing="0.14"
|
||
|
|
android:text="@string/player_now_playing"
|
||
|
|
android:textColor="#FF52B54B"
|
||
|
|
android:textSize="11sp"
|
||
|
|
android:textStyle="bold" />
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_marginTop="4dp"
|
||
|
|
android:text="@string/player_cast"
|
||
|
|
android:textColor="#FFFFFFFF"
|
||
|
|
android:textSize="28sp"
|
||
|
|
android:textStyle="bold" />
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:id="@+id/player_cast_status"
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_marginTop="18dp"
|
||
|
|
android:text="@string/player_cast_loading"
|
||
|
|
android:textColor="#AFFFFFFF"
|
||
|
|
android:textSize="14sp" />
|
||
|
|
|
||
|
|
<HorizontalScrollView
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="0dp"
|
||
|
|
android:layout_marginTop="14dp"
|
||
|
|
android:layout_weight="1"
|
||
|
|
android:clipToPadding="false"
|
||
|
|
android:fillViewport="false"
|
||
|
|
android:overScrollMode="never">
|
||
|
|
|
||
|
|
<LinearLayout
|
||
|
|
android:id="@+id/player_cast_people"
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:layout_height="match_parent"
|
||
|
|
android:gravity="top"
|
||
|
|
android:orientation="horizontal" />
|
||
|
|
</HorizontalScrollView>
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:text="@string/player_back_to_close"
|
||
|
|
android:textColor="#78FFFFFF"
|
||
|
|
android:textSize="12sp" />
|
||
|
|
</LinearLayout>
|
||
|
|
</FrameLayout>
|