|
|
|
@ -1,6 +1,5 @@ |
|
|
|
|
<?xml version="1.0" encoding="utf-8"?> |
|
|
|
|
<android.support.design.widget.CoordinatorLayout |
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android" |
|
|
|
|
<android.support.design.widget.CoordinatorLayout 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="match_parent" |
|
|
|
@ -17,53 +16,64 @@ |
|
|
|
|
<LinearLayout |
|
|
|
|
android:layout_width="match_parent" |
|
|
|
|
android:layout_height="wrap_content" |
|
|
|
|
android:orientation="vertical" |
|
|
|
|
android:gravity="center" |
|
|
|
|
android:paddingTop="16dp" |
|
|
|
|
android:paddingBottom="16dp"> |
|
|
|
|
|
|
|
|
|
<ImageView |
|
|
|
|
android:id="@+id/logo" |
|
|
|
|
android:layout_width="200dp" |
|
|
|
|
android:layout_height="200dp" |
|
|
|
|
android:src="@mipmap/ic_logo" |
|
|
|
|
android:contentDescription="@null" /> |
|
|
|
|
android:orientation="vertical" |
|
|
|
|
android:paddingBottom="16dp" |
|
|
|
|
android:paddingTop="24dp"> |
|
|
|
|
|
|
|
|
|
<TextView |
|
|
|
|
android:id="@+id/versionTV" |
|
|
|
|
android:layout_width="wrap_content" |
|
|
|
|
android:layout_height="wrap_content" |
|
|
|
|
android:paddingTop="8dp" |
|
|
|
|
android:layout_gravity="center_horizontal" |
|
|
|
|
android:drawableLeft="@mipmap/ic_launcher" |
|
|
|
|
android:drawablePadding="16dp" |
|
|
|
|
android:drawableStart="@mipmap/ic_launcher" |
|
|
|
|
android:gravity="center_vertical" |
|
|
|
|
android:textAppearance="@style/TextAppearance.AppCompat.Large" |
|
|
|
|
android:textIsSelectable="true" |
|
|
|
|
android:textAppearance="@style/TextAppearance.AppCompat.Large" /> |
|
|
|
|
android:textStyle="bold" /> |
|
|
|
|
|
|
|
|
|
<TextView |
|
|
|
|
android:layout_width="match_parent" |
|
|
|
|
android:layout_height="wrap_content" |
|
|
|
|
android:autoLink="web" |
|
|
|
|
android:lineSpacingMultiplier="1.2" |
|
|
|
|
android:padding="@dimen/text_content_margin" |
|
|
|
|
android:text="@string/about_tusky_license" |
|
|
|
|
android:textAlignment="center" |
|
|
|
|
android:textAppearance="@style/TextAppearance.AppCompat.Medium" |
|
|
|
|
android:textIsSelectable="true" /> |
|
|
|
|
|
|
|
|
|
<TextView |
|
|
|
|
android:id="@+id/projectURL_TV" |
|
|
|
|
android:layout_width="wrap_content" |
|
|
|
|
android:layout_height="wrap_content" |
|
|
|
|
android:autoLink="web" |
|
|
|
|
android:textIsSelectable="true" |
|
|
|
|
android:lineSpacingMultiplier="1.2" |
|
|
|
|
android:padding="@dimen/text_content_margin" |
|
|
|
|
android:text="@string/about_project_site" |
|
|
|
|
android:textAlignment="center" |
|
|
|
|
android:textAppearance="@style/TextAppearance.AppCompat.Medium" /> |
|
|
|
|
android:textAppearance="@style/TextAppearance.AppCompat.Medium" |
|
|
|
|
android:textIsSelectable="true" /> |
|
|
|
|
|
|
|
|
|
<TextView |
|
|
|
|
android:id="@+id/featuresURL_TV" |
|
|
|
|
android:layout_width="wrap_content" |
|
|
|
|
android:layout_height="wrap_content" |
|
|
|
|
android:autoLink="web" |
|
|
|
|
android:textIsSelectable="true" |
|
|
|
|
android:lineSpacingMultiplier="1.2" |
|
|
|
|
android:padding="@dimen/text_content_margin" |
|
|
|
|
android:text="@string/about_bug_feature_request_site" |
|
|
|
|
android:textAlignment="center" |
|
|
|
|
android:textAppearance="@style/TextAppearance.AppCompat.Medium" /> |
|
|
|
|
android:textAppearance="@style/TextAppearance.AppCompat.Medium" |
|
|
|
|
android:textIsSelectable="true" /> |
|
|
|
|
|
|
|
|
|
<Button |
|
|
|
|
android:id="@+id/tusky_profile_button" |
|
|
|
|
android:layout_width="wrap_content" |
|
|
|
|
android:layout_height="wrap_content" |
|
|
|
|
android:clickable="true" |
|
|
|
|
android:lineSpacingMultiplier="1.2" |
|
|
|
|
android:padding="@dimen/text_content_margin" |
|
|
|
|
android:text="@string/about_tusky_account" |
|
|
|
|
android:textAlignment="center" |
|
|
|
|