mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2025-01-09 13:43:22 +00:00
41 lines
1.6 KiB
XML
41 lines
1.6 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:orientation="vertical"
|
|
android:id="@+id/fl_device_container"
|
|
android:tag="focusable"
|
|
android:focusable="false"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="29dp">
|
|
<LinearLayout
|
|
android:gravity="center_vertical"
|
|
android:id="@+id/ll_focus_bg"
|
|
android:paddingLeft="3dp"
|
|
android:paddingRight="3dp"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_marginLeft="3dp">
|
|
<TextView
|
|
android:textSize="24dp"
|
|
android:textColor="@color/black"
|
|
android:ellipsize="marquee"
|
|
android:gravity="center_vertical"
|
|
android:id="@+id/tv_title"
|
|
android:focusable="true"
|
|
android:focusableInTouchMode="true"
|
|
android:layout_width="0dp"
|
|
android:layout_height="match_parent"
|
|
android:scrollHorizontally="true"
|
|
android:singleLine="true"
|
|
android:selectAllOnFocus="false"
|
|
android:layout_weight="1"
|
|
android:marqueeRepeatLimit="marquee_forever"
|
|
android:fontFamily="@font/power_grotesk_regular"
|
|
android:defaultFocusHighlightEnabled="false"
|
|
android:textFontWeight="400"/>
|
|
<View
|
|
android:id="@+id/v_ring"
|
|
android:background="@drawable/shape_setting_ring_selected"
|
|
android:layout_width="23dp"
|
|
android:layout_height="23dp"/>
|
|
</LinearLayout>
|
|
</FrameLayout>
|