40 lines
1.4 KiB
XML
40 lines
1.4 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!-- A short, non-focusable station ident shown over the first five seconds of content. -->
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:id="@+id/player_playback_identity"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="54dp"
|
|
android:layout_gravity="start|top"
|
|
android:layout_marginStart="48dp"
|
|
android:layout_marginTop="34dp"
|
|
android:alpha="0"
|
|
android:focusable="false"
|
|
android:gravity="center_vertical"
|
|
android:orientation="horizontal"
|
|
android:visibility="gone">
|
|
|
|
<ImageView
|
|
android:layout_width="42dp"
|
|
android:layout_height="38dp"
|
|
android:contentDescription="@string/player_preroll_brand_logo"
|
|
android:scaleType="fitCenter"
|
|
android:src="@drawable/emby_logo" />
|
|
|
|
<TextView
|
|
android:id="@+id/player_playback_identity_title"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="match_parent"
|
|
android:layout_marginStart="14dp"
|
|
android:ellipsize="end"
|
|
android:gravity="start|center_vertical"
|
|
android:maxLines="1"
|
|
android:maxWidth="520dp"
|
|
android:shadowColor="#E0000000"
|
|
android:shadowDx="0"
|
|
android:shadowDy="2"
|
|
android:shadowRadius="5"
|
|
android:textColor="#FFFFFFFF"
|
|
android:textSize="25sp"
|
|
android:textStyle="bold" />
|
|
</LinearLayout>
|