mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2025-01-09 13:43:22 +00:00
50 lines
2 KiB
XML
50 lines
2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
android:focusable="true"
|
|
android:focusableInTouchMode="true"
|
|
android:clipChildren="false"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content">
|
|
<View
|
|
android:layout_gravity="start|top"
|
|
android:id="@+id/v_fade_background"
|
|
android:background="@drawable/overlay_gradient_000000_00000000_a270"
|
|
android:visibility="gone"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="72dp"/>
|
|
<androidx.appcompat.widget.AppCompatTextView
|
|
android:textSize="30sp"
|
|
android:textColor="@color/black"
|
|
android:gravity="start|center_vertical"
|
|
android:layout_gravity="start|top"
|
|
android:id="@+id/tv_focused"
|
|
android:background="@drawable/shape_ff4d00_r10"
|
|
android:visibility="gone"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="36dp"
|
|
android:maxLines="1"
|
|
android:singleLine="true"
|
|
android:includeFontPadding="false"
|
|
android:drawablePadding="6dp"
|
|
android:fontFamily="@font/power_grotesk_regular"
|
|
android:paddingStart="6dp"
|
|
android:paddingEnd="6dp"
|
|
android:textFontWeight="400"
|
|
app:drawableStartCompat="@drawable/ic_setting_back"/>
|
|
<tech.rabbit.r1launcher.ota.MarqueeTextView
|
|
android:textSize="30sp"
|
|
android:textColor="@color/white"
|
|
android:ellipsize="marquee"
|
|
android:gravity="start|center_vertical"
|
|
android:layout_gravity="start|top"
|
|
android:id="@+id/tv_unfocused"
|
|
android:visibility="visible"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:minHeight="36dp"
|
|
android:maxLines="1"
|
|
android:singleLine="true"
|
|
android:includeFontPadding="false"
|
|
android:fontFamily="@font/power_grotesk_regular"
|
|
android:textFontWeight="400"/>
|
|
</FrameLayout>
|