mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2025-01-09 13:43:22 +00:00
34 lines
1.3 KiB
XML
34 lines
1.3 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<androidx.appcompat.widget.LinearLayoutCompat xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:orientation="vertical"
|
|
android:focusable="true"
|
|
android:focusableInTouchMode="true"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="58dp"
|
|
android:paddingStart="3dp"
|
|
android:paddingEnd="3dp">
|
|
<androidx.appcompat.widget.AppCompatTextView
|
|
android:textSize="24sp"
|
|
android:textColor="@color/dark_414141"
|
|
android:gravity="center_vertical"
|
|
android:id="@+id/tv_label"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="0dp"
|
|
android:maxLines="1"
|
|
android:singleLine="true"
|
|
android:layout_weight="1"
|
|
android:fontFamily="@font/power_grotesk_regular"
|
|
android:textFontWeight="400"/>
|
|
<tech.rabbit.r1launcher.ota.MarqueeTextView
|
|
android:textSize="24sp"
|
|
android:textColor="@color/white"
|
|
android:gravity="center_vertical"
|
|
android:id="@+id/tv_value"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="0dp"
|
|
android:maxLines="1"
|
|
android:singleLine="true"
|
|
android:layout_weight="1"
|
|
android:fontFamily="@font/power_grotesk_regular"
|
|
android:textFontWeight="400"/>
|
|
</androidx.appcompat.widget.LinearLayoutCompat>
|