2019-06-03 23:25:05 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent" >
|
|
|
|
|
|
|
|
<ScrollView android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2020-01-07 13:27:05 +01:00
|
|
|
android:background="?attr/primaryBackgroundColor">
|
2019-06-03 23:25:05 +02:00
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:fitsSystemWindows="true"
|
|
|
|
android:gravity="start"
|
|
|
|
android:layout_marginStart="20dp"
|
|
|
|
android:layout_marginEnd="20dp"
|
|
|
|
android:id="@+id/aboutFrame">
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:layout_width="80dp"
|
|
|
|
android:layout_height="80dp"
|
|
|
|
android:layout_gravity="center_horizontal"
|
|
|
|
android:layout_marginTop="20dp"
|
|
|
|
android:baselineAligned="false"
|
|
|
|
android:contentDescription="@string/logo"
|
2019-10-01 16:35:51 +02:00
|
|
|
android:src="@mipmap/app_logo" />
|
2019-06-03 23:25:05 +02:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/appName"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/app_name"
|
|
|
|
android:textIsSelectable="true"
|
|
|
|
android:layout_marginTop="5dp"
|
|
|
|
android:textSize="24sp"
|
2020-01-07 13:27:05 +01:00
|
|
|
android:textColor="?attr/primaryTextColor"
|
2019-06-03 23:25:05 +02:00
|
|
|
android:layout_gravity="center_horizontal"/>
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/appVerBuild"
|
|
|
|
android:text="@string/appVerBuild"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:textIsSelectable="true"
|
|
|
|
android:layout_marginTop="5dp"
|
|
|
|
android:textSize="16sp"
|
2020-01-07 13:27:05 +01:00
|
|
|
android:textColor="?attr/primaryTextColor"
|
2019-06-03 23:25:05 +02:00
|
|
|
android:layout_gravity="center_horizontal"/>
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/appDesc"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/appDesc"
|
|
|
|
android:textIsSelectable="true"
|
|
|
|
android:layout_marginTop="25dp"
|
|
|
|
android:textSize="16sp"
|
2020-01-07 13:27:05 +01:00
|
|
|
android:textColor="?attr/primaryTextColor"
|
2019-06-03 23:25:05 +02:00
|
|
|
android:padding="5dp"
|
2020-01-07 13:27:05 +01:00
|
|
|
android:background="?attr/primaryBackgroundColor"
|
2019-06-03 23:25:05 +02:00
|
|
|
android:layout_gravity="center_horizontal"/>
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/giteaVersion"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/commitPage"
|
|
|
|
android:layout_marginTop="15dp"
|
|
|
|
android:textSize="16sp"
|
2020-01-07 13:27:05 +01:00
|
|
|
android:textColor="?attr/primaryTextColor"
|
2019-06-03 23:25:05 +02:00
|
|
|
android:padding="5dp"
|
2020-01-07 13:27:05 +01:00
|
|
|
android:background="?attr/primaryBackgroundColor"
|
2019-06-03 23:25:05 +02:00
|
|
|
android:autoLink="web" />
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginTop="15dp"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:padding="5dp"
|
2020-01-07 13:27:05 +01:00
|
|
|
android:background="?attr/primaryBackgroundColor">
|
2019-06-03 23:25:05 +02:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/donationLink"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/supportText"
|
|
|
|
android:textColor="@color/lightBlue"
|
|
|
|
android:textSize="16sp"
|
|
|
|
android:gravity="start"
|
|
|
|
android:autoLink="web"
|
|
|
|
android:visibility="visible"
|
|
|
|
android:layout_marginBottom="10dp"
|
|
|
|
android:textColorLink="@color/lightBlue" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/donationLinkPatreon"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/supportTextPatreon"
|
|
|
|
android:textColor="@color/lightBlue"
|
|
|
|
android:textSize="16sp"
|
|
|
|
android:gravity="start"
|
|
|
|
android:autoLink="web"
|
|
|
|
android:visibility="visible"
|
2019-10-04 16:20:46 +02:00
|
|
|
android:layout_marginBottom="10dp"
|
2019-06-03 23:25:05 +02:00
|
|
|
android:textColorLink="@color/lightBlue" />
|
|
|
|
|
2019-10-04 16:20:46 +02:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/translateLink"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:autoLink="web"
|
|
|
|
android:gravity="start"
|
|
|
|
android:text="@string/translateText"
|
|
|
|
android:textColor="@color/lightBlue"
|
|
|
|
android:textColorLink="@color/lightBlue"
|
|
|
|
android:textSize="16sp"
|
|
|
|
android:visibility="visible" />
|
|
|
|
|
2019-06-03 23:25:05 +02:00
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginTop="15dp"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:padding="5dp"
|
2020-01-07 13:27:05 +01:00
|
|
|
android:background="?attr/primaryBackgroundColor">
|
2019-06-03 23:25:05 +02:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/appWebsite"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/appWebsite"
|
|
|
|
android:textColor="@color/lightBlue"
|
|
|
|
android:textSize="16sp"
|
|
|
|
android:gravity="start"
|
|
|
|
android:autoLink="web"
|
|
|
|
android:visibility="visible"
|
|
|
|
android:layout_marginBottom="10dp"
|
|
|
|
android:textColorLink="@color/lightBlue" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/appRepo"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/appRepo"
|
|
|
|
android:textColor="@color/lightBlue"
|
|
|
|
android:textSize="16sp"
|
|
|
|
android:gravity="start"
|
|
|
|
android:autoLink="web"
|
|
|
|
android:visibility="visible"
|
|
|
|
android:textColorLink="@color/lightBlue" />
|
|
|
|
|
|
|
|
</LinearLayout>
|
2020-08-09 10:23:51 +02:00
|
|
|
|
2019-06-03 23:25:05 +02:00
|
|
|
<TextView
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="25dp" />
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
</ScrollView>
|
|
|
|
|
2020-08-09 10:23:51 +02:00
|
|
|
</RelativeLayout>
|