|
|
@@ -0,0 +1,62 @@
|
|
|
+<?xml version="1.0" encoding="utf-8"?>
|
|
|
+<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
+ xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
+ xmlns:tools="http://schemas.android.com/tools"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_gravity="center"
|
|
|
+ android:background="?android:attr/selectableItemBackground"
|
|
|
+ android:clickable="true"
|
|
|
+ android:focusable="true"
|
|
|
+ android:orientation="vertical"
|
|
|
+ android:padding="16dp">
|
|
|
+
|
|
|
+ <ImageView
|
|
|
+ android:layout_width="40dp"
|
|
|
+ android:layout_height="40dp"
|
|
|
+ android:layout_gravity="center_horizontal"
|
|
|
+ app:srcCompat="@drawable/ic_letter_k"
|
|
|
+ tools:ignore="ContentDescription" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_gravity="center_horizontal"
|
|
|
+ android:layout_marginTop="4dp"
|
|
|
+ android:text="@string/app_name"
|
|
|
+ android:textSize="16sp" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/about_app_version"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_gravity="center_horizontal"
|
|
|
+ android:textSize="12sp"
|
|
|
+ tools:text="1.0.0" />
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_gravity="center_horizontal"
|
|
|
+ android:layout_marginTop="8dp"
|
|
|
+ android:orientation="vertical">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ style="@style/AboutItem"
|
|
|
+ android:text="@string/about_idea" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ style="@style/AboutItem"
|
|
|
+ android:text="@string/about_logo" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ style="@style/AboutItem"
|
|
|
+ android:text="@string/about_developer" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ style="@style/AboutItem"
|
|
|
+ android:text="@string/about_designer" />
|
|
|
+
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+</LinearLayout>
|