|
@@ -1,5 +1,6 @@
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
<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"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
android:layout_width="match_parent"
|
|
android:layout_width="match_parent"
|
|
|
android:layout_height="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
@@ -40,29 +41,56 @@
|
|
|
android:layout_height="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
|
android:layout_gravity="center_horizontal"
|
|
android:layout_gravity="center_horizontal"
|
|
|
android:layout_marginTop="8dp"
|
|
android:layout_marginTop="8dp"
|
|
|
- android:orientation="vertical">
|
|
|
|
|
-
|
|
|
|
|
- <TextView
|
|
|
|
|
- style="@style/AboutItem"
|
|
|
|
|
- android:drawableLeft="@drawable/ic_about_api"
|
|
|
|
|
- android:drawableStart="@drawable/ic_about_api"
|
|
|
|
|
- android:text="@string/about.text.idea"
|
|
|
|
|
- android:textColor="?android:attr/textColorPrimary" />
|
|
|
|
|
-
|
|
|
|
|
- <TextView
|
|
|
|
|
- style="@style/AboutItem"
|
|
|
|
|
- android:drawableLeft="@drawable/ic_about_developer"
|
|
|
|
|
- android:drawableStart="@drawable/ic_about_developer"
|
|
|
|
|
- android:text="@string/about.text.developer"
|
|
|
|
|
- android:textColor="?android:attr/textColorPrimary" />
|
|
|
|
|
-
|
|
|
|
|
- <TextView
|
|
|
|
|
- android:id="@+id/aboutDesignerText"
|
|
|
|
|
- style="@style/AboutItem"
|
|
|
|
|
- android:drawableLeft="@drawable/ic_about_designer"
|
|
|
|
|
- android:drawableStart="@drawable/ic_about_designer"
|
|
|
|
|
- android:text="@string/about.text.designer"
|
|
|
|
|
- android:textColor="?android:attr/textColorPrimary" />
|
|
|
|
|
|
|
+ android:orientation="vertical"
|
|
|
|
|
+ tools:ignore="ContentDescription,UseCompoundDrawables">
|
|
|
|
|
+
|
|
|
|
|
+ <LinearLayout
|
|
|
|
|
+ android:layout_width="match_parent"
|
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
|
+ android:gravity="center_vertical"
|
|
|
|
|
+ android:orientation="horizontal">
|
|
|
|
|
+
|
|
|
|
|
+ <ImageView
|
|
|
|
|
+ style="@style/AboutIconItem"
|
|
|
|
|
+ app:srcCompat="@drawable/ic_about_api" />
|
|
|
|
|
+
|
|
|
|
|
+ <TextView
|
|
|
|
|
+ style="@style/AboutItem"
|
|
|
|
|
+ android:text="@string/about.text.idea" />
|
|
|
|
|
+
|
|
|
|
|
+ </LinearLayout>
|
|
|
|
|
+
|
|
|
|
|
+ <LinearLayout
|
|
|
|
|
+ android:layout_width="match_parent"
|
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
|
+ android:gravity="center_vertical"
|
|
|
|
|
+ android:orientation="horizontal">
|
|
|
|
|
+
|
|
|
|
|
+ <ImageView
|
|
|
|
|
+ style="@style/AboutIconItem"
|
|
|
|
|
+ app:srcCompat="@drawable/ic_about_developer" />
|
|
|
|
|
+
|
|
|
|
|
+ <TextView
|
|
|
|
|
+ style="@style/AboutItem"
|
|
|
|
|
+ android:text="@string/about.text.developer" />
|
|
|
|
|
+
|
|
|
|
|
+ </LinearLayout>
|
|
|
|
|
+
|
|
|
|
|
+ <LinearLayout
|
|
|
|
|
+ android:layout_width="match_parent"
|
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
|
+ android:gravity="center_vertical"
|
|
|
|
|
+ android:orientation="horizontal">
|
|
|
|
|
+
|
|
|
|
|
+ <ImageView
|
|
|
|
|
+ style="@style/AboutIconItem"
|
|
|
|
|
+ app:srcCompat="@drawable/ic_about_designer" />
|
|
|
|
|
+
|
|
|
|
|
+ <TextView
|
|
|
|
|
+ style="@style/AboutItem"
|
|
|
|
|
+ android:text="@string/about.text.designer" />
|
|
|
|
|
+
|
|
|
|
|
+ </LinearLayout>
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
</LinearLayout>
|
|
|
|
|
|