Add OneUI cards layout settings

This commit is contained in:
ajp_anton
2026-08-29 22:26:25 +00:00
parent c14b2c5e61
commit ae1bf8e62b
13 changed files with 346 additions and 0 deletions
@@ -0,0 +1,40 @@
<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:padding="@dimen/page_padding">
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="These settings apply only to OneUI Cards mode. Icons mode remains rendered by Android or StatusBarTweak."
android:textAppearance="?attr/textAppearanceBody2" />
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="24dp"
android:text="Lockscreen"
android:textAppearance="?attr/textAppearanceHeadline6" />
<include
android:id="@+id/lockscreen_settings"
layout="@layout/include_cards_grid_settings_lockscreen" />
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="28dp"
android:text="Always-on display"
android:textAppearance="?attr/textAppearanceHeadline6" />
<include
android:id="@+id/aod_settings"
layout="@layout/include_cards_grid_settings_aod" />
</LinearLayout>
</ScrollView>