blob: e13d297903b2230b06312782fa66b2089d6eff27 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:focusable="false"
android:layout_height="wrap_content">
<TextView
android:id="@+id/text_header_name"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentEnd="true"
android:layout_alignParentStart="true"
android:layout_alignParentTop="true"
android:layout_marginHorizontal="@dimen/spacing_large"
android:layout_marginTop="24dp"
android:layout_marginBottom="8dp"
android:gravity="start|center_vertical"
android:textColor="?attr/colorPrimary"
android:textStyle="bold"
android:textAlignment="viewStart"
tools:text="CPU Settings" />
</RelativeLayout>
|