42 lines
1.5 KiB
XML
42 lines
1.5 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<layout xmlns:android="http://schemas.android.com/apk/res/android">
|
|
<data>
|
|
<variable
|
|
name="versionName"
|
|
type="String" />
|
|
</data>
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="center_vertical"
|
|
android:orientation="horizontal"
|
|
android:padding="@dimen/dialog_padding">
|
|
|
|
<View
|
|
android:layout_width="@dimen/about_icon_size"
|
|
android:layout_height="@dimen/about_icon_size"
|
|
android:background="@drawable/ic_clash"
|
|
android:backgroundTint="?attr/colorLogo" />
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginStart="@dimen/about_text_margin"
|
|
android:orientation="vertical">
|
|
|
|
<TextView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/application_name"
|
|
android:textAppearance="@style/TextAppearance.MaterialComponents.Body1" />
|
|
|
|
<TextView
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="@dimen/item_text_margin"
|
|
android:text="@{versionName}"
|
|
android:textAppearance="@style/TextAppearance.MaterialComponents.Body2" />
|
|
</LinearLayout>
|
|
</LinearLayout>
|
|
</layout> |