Files
memby/app/src/main/res/layout/player_season_finale.xml
T

66 lines
2.5 KiB
XML
Raw Normal View History

2026-08-02 22:10:19 +12:00
<?xml version="1.0" encoding="utf-8"?>
<!-- Finale context is a separate, higher-priority lower third. It sits above the normal
start/time cue so both can be read together and never takes focus from playback. -->
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/player_season_finale"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="bottom|start"
android:layout_marginStart="52dp"
android:layout_marginBottom="120dp"
android:clipChildren="false"
android:clipToPadding="false"
android:focusable="false"
android:visibility="gone">
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/time_remaining_cue_background"
android:gravity="center_vertical"
android:orientation="horizontal"
android:paddingEnd="18dp">
<View
android:layout_width="3dp"
android:layout_height="32dp"
android:background="#FFFFB454" />
<ImageView
android:layout_width="30dp"
android:layout_height="27dp"
android:layout_marginStart="10dp"
android:contentDescription="@null"
android:scaleType="fitCenter"
android:src="@drawable/emby_logo" />
<TextView
android:id="@+id/player_season_finale_label"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="10dp"
android:letterSpacing="0.16"
android:paddingTop="9dp"
android:paddingBottom="9dp"
android:text="@string/player_season_finale_label"
android:textColor="#FFFFC778"
android:textSize="10sp"
android:textStyle="bold" />
<TextView
android:id="@+id/player_season_finale_value"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="10dp"
android:ellipsize="end"
android:maxLines="1"
android:paddingTop="9dp"
android:paddingBottom="9dp"
android:textColor="#FFFFFFFF"
android:textSize="14sp"
android:textStyle="bold"
tools:text="Signal Hill · Season 2 finale" />
</LinearLayout>
</FrameLayout>