mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2025-01-09 13:43:22 +00:00
36 lines
1.4 KiB
XML
36 lines
1.4 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:orientation="vertical"
|
|
android:tag="focusable"
|
|
android:paddingTop="19.5dp"
|
|
android:focusable="true"
|
|
android:focusableInTouchMode="true"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="52.5dp"
|
|
android:layout_marginHorizontal="3dp"
|
|
android:defaultFocusHighlightEnabled="false">
|
|
<LinearLayout
|
|
android:gravity="center_vertical"
|
|
android:orientation="horizontal"
|
|
android:id="@+id/ll_container"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
<TextView
|
|
android:textSize="30dp"
|
|
android:textColor="@color/white"
|
|
android:gravity="center_vertical"
|
|
android:layout_gravity="center_vertical"
|
|
android:id="@+id/tv_title"
|
|
android:layout_width="0dp"
|
|
android:layout_height="match_parent"
|
|
android:text="@string/bluetooth"
|
|
android:layout_weight="1"
|
|
android:fontFamily="@font/power_grotesk_regular"
|
|
android:textFontWeight="400"/>
|
|
<tech.rabbit.r1launcher.widget.SettingSwitch
|
|
android:id="@+id/ss"
|
|
android:focusable="false"
|
|
android:layout_width="38.5dp"
|
|
android:layout_height="23dp"/>
|
|
</LinearLayout>
|
|
</FrameLayout>
|