summaryrefslogtreecommitdiffstats
path: root/src/android/app/src/main/res/layout/list_item_settings_header.xml
diff options
context:
space:
mode:
Diffstat (limited to 'src/android/app/src/main/res/layout/list_item_settings_header.xml')
-rw-r--r--src/android/app/src/main/res/layout/list_item_settings_header.xml20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/android/app/src/main/res/layout/list_item_settings_header.xml b/src/android/app/src/main/res/layout/list_item_settings_header.xml
new file mode 100644
index 000000000..abd24df6f
--- /dev/null
+++ b/src/android/app/src/main/res/layout/list_item_settings_header.xml
@@ -0,0 +1,20 @@
+<?xml version="1.0" encoding="utf-8"?>
+<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
+ xmlns:tools="http://schemas.android.com/tools"
+ android:layout_width="match_parent"
+ android:layout_height="48dp"
+ android:paddingVertical="4dp"
+ android:paddingHorizontal="@dimen/spacing_large">
+
+ <com.google.android.material.textview.MaterialTextView
+ style="@style/TextAppearance.Material3.TitleSmall"
+ android:id="@+id/text_header_name"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:layout_gravity="start|center_vertical"
+ android:textColor="?attr/colorPrimary"
+ android:textAlignment="viewStart"
+ android:textStyle="bold"
+ tools:text="CPU Settings" />
+
+</FrameLayout>