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

37 lines
1.3 KiB
XML
Raw Normal View History

<?xml version="1.0" encoding="utf-8"?>
2020-05-05 21:33:40 +00:00
<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">
2020-05-01 13:14:52 +00:00
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/rectangle_2"
2020-05-01 13:14:52 +00:00
android:paddingBottom="4dp"
android:orientation="vertical">
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/app_name"
android:textColor="#fff"
android:textAlignment="center"
android:textSize="30sp"
2020-05-01 13:14:52 +00:00
android:fontFamily="@font/exo_semibold" />
2020-05-01 13:14:52 +00:00
<!--suppress AndroidDomInspection -->
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
2020-05-01 13:14:52 +00:00
android:text="@string/versionName"
android:textColor="#fff"
android:textAlignment="center"
android:textSize="18sp"
2020-05-01 13:14:52 +00:00
android:fontFamily="@font/exo_bold" />
2020-05-01 13:14:52 +00:00
</LinearLayout>
2020-05-05 21:33:40 +00:00
</com.google.android.material.card.MaterialCardView>