mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2025-01-09 13:43:22 +00:00
30 lines
1.4 KiB
XML
30 lines
1.4 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<tech.rabbit.r1launcher.widget.UntouchableFrameLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
android:orientation="vertical"
|
|
android:id="@+id/fl_root_layout"
|
|
android:background="@color/black"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
<tech.rabbit.r1launcher.widget.SettingTitle
|
|
android:id="@+id/title_settings"
|
|
android:background="@drawable/shape_title_item_background_selector"
|
|
android:focusable="true"
|
|
android:focusableInTouchMode="true"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginLeft="5dp"
|
|
app:st_focus_title="@string/back_home"
|
|
app:st_normal_title="@string/settings_page_settings"/>
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
android:id="@+id/rv_setting_items"
|
|
android:focusableInTouchMode="true"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="46dp"
|
|
android:overScrollMode="never"/>
|
|
<tech.rabbit.r1launcher.settings.brightness.BrightnessAdjustCard
|
|
android:id="@+id/card_brightness"
|
|
android:visibility="gone"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"/>
|
|
</tech.rabbit.r1launcher.widget.UntouchableFrameLayout>
|