57 lines
2.2 KiB
XML
57 lines
2.2 KiB
XML
<?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:id="@+id/one_ui_only_notice"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="Cards layout is available only on Samsung OneUI devices."
|
|
android:textAppearance="?attr/textAppearanceBody1"
|
|
android:textStyle="bold"
|
|
android:visibility="gone" />
|
|
|
|
<LinearLayout
|
|
android:id="@+id/one_ui_cards_controls"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical">
|
|
|
|
<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."
|
|
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>
|
|
</LinearLayout>
|
|
</ScrollView>
|