mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2025-01-09 13:43:22 +00:00
41 lines
1.7 KiB
XML
41 lines
1.7 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
android:orientation="vertical"
|
|
android:focusable="true"
|
|
android:focusableInTouchMode="true"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
<tech.rabbit.r1launcher.widget.SettingTitle
|
|
android:id="@+id/setting_title"
|
|
android:background="@drawable/shape_title_item_background_selector"
|
|
android:focusable="true"
|
|
android:focusableInTouchMode="true"
|
|
android:nextFocusDown="@+id/tv_confirm"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginStart="5dp"
|
|
app:st_focus_title="@string/settings"
|
|
app:st_normal_title="@string/settings_page_power_off"/>
|
|
<Space
|
|
android:layout_width="match_parent"
|
|
android:layout_height="0dp"
|
|
android:layout_weight="1"/>
|
|
<TextView
|
|
android:textSize="30sp"
|
|
android:textColor="@color/selector_000000_ffffff"
|
|
android:gravity="center"
|
|
android:layout_gravity="bottom|center_horizontal"
|
|
android:id="@+id/tv_confirm"
|
|
android:background="@drawable/selector_ff4d00_00000000_r10"
|
|
android:focusable="true"
|
|
android:focusableInTouchMode="true"
|
|
android:nextFocusUp="@+id/setting_title"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="36dp"
|
|
android:text="@string/confirm"
|
|
android:includeFontPadding="false"
|
|
android:fontFamily="@font/power_grotesk_regular"
|
|
android:textFontWeight="400">
|
|
<requestFocus/>
|
|
</TextView>
|
|
</LinearLayout>
|