VancedManager/app/src/main/res/layout/include_about_header.xml

34 lines
1.2 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<com.google.android.material.card.MaterialCardView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:cardCornerRadius="8dp">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/vanced_gradient"
android:orientation="vertical"
android:paddingVertical="8dp">
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/app_name"
android:textAlignment="center"
android:textColor="#fff"
android:textSize="30sp" />
<!--suppress AndroidDomInspection -->
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/versionName"
android:textAlignment="center"
android:textColor="#fff"
android:textSize="16sp" />
</LinearLayout>
</com.google.android.material.card.MaterialCardView>