2019-09-06 17:55:14 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?><!--
|
2017-05-05 16:36:04 +02:00
|
|
|
Copyright 2017 Thomas Schneider
|
|
|
|
|
2019-05-18 11:10:30 +02:00
|
|
|
This file is a part of Fedilab
|
2017-05-05 16:36:04 +02:00
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify it under the terms of the
|
|
|
|
GNU General Public License as published by the Free Software Foundation; either version 3 of the
|
|
|
|
License, or (at your option) any later version.
|
|
|
|
|
2019-05-18 11:10:30 +02:00
|
|
|
Fedilab is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even
|
2017-05-05 16:36:04 +02:00
|
|
|
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
|
|
|
|
Public License for more details.
|
|
|
|
|
2019-05-18 11:10:30 +02:00
|
|
|
You should have received a copy of the GNU General Public License along with Fedilab; if not,
|
2017-05-05 16:36:04 +02:00
|
|
|
see <http://www.gnu.org/licenses>.
|
|
|
|
-->
|
2017-09-03 10:36:27 +02:00
|
|
|
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
|
2017-10-01 15:02:38 +02:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2017-05-05 16:36:04 +02:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2019-09-06 17:55:14 +02:00
|
|
|
android:orientation="vertical">
|
|
|
|
|
2019-07-29 14:48:53 +02:00
|
|
|
<LinearLayout
|
2017-05-05 16:36:04 +02:00
|
|
|
android:layout_width="match_parent"
|
2017-08-29 11:07:47 +02:00
|
|
|
android:layout_height="wrap_content"
|
2019-09-06 17:55:14 +02:00
|
|
|
android:orientation="vertical">
|
2017-09-03 10:36:27 +02:00
|
|
|
<!-- About app name -->
|
|
|
|
<TextView
|
|
|
|
android:layout_marginTop="10dp"
|
|
|
|
android:textSize="20sp"
|
|
|
|
android:layout_gravity="center_horizontal"
|
|
|
|
android:gravity="center_horizontal"
|
|
|
|
android:text="@string/app_name"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content" />
|
|
|
|
<!-- About version -->
|
|
|
|
<TextView
|
|
|
|
android:layout_marginTop="10dp"
|
|
|
|
android:id="@+id/about_version"
|
|
|
|
android:textSize="16sp"
|
|
|
|
android:layout_gravity="center_horizontal"
|
|
|
|
android:gravity="center_horizontal"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content" />
|
|
|
|
|
|
|
|
<!-- About developer -->
|
2017-05-20 15:15:02 +02:00
|
|
|
<TextView
|
2017-09-03 10:36:27 +02:00
|
|
|
android:padding="5dp"
|
|
|
|
android:layout_marginTop="10dp"
|
2017-09-02 19:15:29 +02:00
|
|
|
android:layout_width="wrap_content"
|
2017-08-29 11:07:47 +02:00
|
|
|
android:layout_height="wrap_content"
|
2017-09-03 10:36:27 +02:00
|
|
|
android:layout_gravity="center_vertical"
|
2019-11-07 17:52:12 +01:00
|
|
|
android:textColor="?colorAccent"
|
2017-09-03 10:36:27 +02:00
|
|
|
android:gravity="center_vertical"
|
2017-05-20 15:15:02 +02:00
|
|
|
android:text="@string/about_developer"
|
2019-09-06 17:55:14 +02:00
|
|
|
android:textSize="16sp" />
|
|
|
|
|
2019-05-18 11:10:30 +02:00
|
|
|
<app.fedilab.android.helper.ExpandableHeightListView
|
2017-09-02 19:15:29 +02:00
|
|
|
android:id="@+id/lv_developers"
|
|
|
|
android:layout_width="match_parent"
|
2017-09-03 10:36:27 +02:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:scrollbars="none"
|
2019-09-06 17:55:14 +02:00
|
|
|
android:divider="@null" />
|
|
|
|
|
2019-02-08 19:11:54 +01:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/txt_developers"
|
|
|
|
android:visibility="gone"
|
|
|
|
android:textSize="18sp"
|
|
|
|
android:layout_marginBottom="10dp"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content" />
|
2017-05-20 15:15:02 +02:00
|
|
|
|
2018-05-12 11:28:58 +02:00
|
|
|
<Button
|
|
|
|
android:id="@+id/about_support"
|
|
|
|
android:layout_gravity="center"
|
|
|
|
android:gravity="center"
|
|
|
|
style="@style/Base.Widget.AppCompat.Button.Colored"
|
|
|
|
android:text="@string/support_the_app_on_liberapay"
|
|
|
|
android:layout_width="wrap_content"
|
2019-09-06 17:55:14 +02:00
|
|
|
android:layout_height="wrap_content" />
|
2018-05-12 11:28:58 +02:00
|
|
|
|
2018-08-19 14:58:56 +02:00
|
|
|
<Button
|
|
|
|
android:id="@+id/about_support_paypal"
|
|
|
|
android:layout_gravity="center"
|
|
|
|
android:gravity="center"
|
|
|
|
style="@style/Base.Widget.AppCompat.Button.Colored"
|
|
|
|
android:text="PayPal"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2018-09-19 10:16:44 +02:00
|
|
|
tools:ignore="HardcodedText" />
|
2019-09-06 17:55:14 +02:00
|
|
|
|
2017-12-23 08:13:18 +01:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/about_wiki"
|
|
|
|
android:layout_gravity="center"
|
|
|
|
android:gravity="center"
|
|
|
|
android:textSize="16sp"
|
|
|
|
android:padding="10dp"
|
|
|
|
android:autoLink="web"
|
2018-09-19 10:16:44 +02:00
|
|
|
android:text="@string/how_to_videos"
|
2017-12-23 08:13:18 +01:00
|
|
|
android:layout_width="match_parent"
|
2019-09-06 17:55:14 +02:00
|
|
|
android:layout_height="wrap_content" />
|
2017-12-23 08:13:18 +01:00
|
|
|
|
2017-10-01 15:02:38 +02:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/about_website"
|
|
|
|
android:layout_gravity="center"
|
|
|
|
android:gravity="center"
|
|
|
|
android:textSize="16sp"
|
|
|
|
android:padding="10dp"
|
|
|
|
android:autoLink="web"
|
2019-02-06 14:29:55 +01:00
|
|
|
android:text="https://fedilab.app"
|
2017-10-01 15:02:38 +02:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
tools:ignore="HardcodedText" />
|
|
|
|
|
2018-11-09 07:02:55 +01:00
|
|
|
<!-- About UX/UI designer -->
|
|
|
|
<TextView
|
|
|
|
android:padding="5dp"
|
|
|
|
android:layout_marginTop="10dp"
|
|
|
|
android:id="@+id/about_thanks_ux"
|
|
|
|
android:layout_width="match_parent"
|
2019-11-07 17:52:12 +01:00
|
|
|
android:textColor="?colorAccent"
|
2018-11-09 07:02:55 +01:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
android:textSize="16sp"
|
2019-09-06 17:55:14 +02:00
|
|
|
android:text="@string/thanks_text_ux" />
|
2018-11-09 07:02:55 +01:00
|
|
|
|
2019-05-18 11:10:30 +02:00
|
|
|
<app.fedilab.android.helper.ExpandableHeightListView
|
2018-11-09 07:02:55 +01:00
|
|
|
android:id="@+id/lv_ux"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:scrollbars="none"
|
2019-09-06 17:55:14 +02:00
|
|
|
android:divider="@null" />
|
|
|
|
|
2019-02-08 19:11:54 +01:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/txt_ux"
|
|
|
|
android:visibility="gone"
|
|
|
|
android:textSize="16sp"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content" />
|
2018-11-18 10:09:32 +01:00
|
|
|
|
2019-02-08 19:11:54 +01:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/txt_support"
|
|
|
|
android:visibility="gone"
|
|
|
|
android:textSize="16sp"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content" />
|
2018-11-09 07:02:55 +01:00
|
|
|
|
2018-04-19 18:19:54 +02:00
|
|
|
|
2017-10-08 11:54:41 +02:00
|
|
|
<!-- About logo designer -->
|
|
|
|
<TextView
|
|
|
|
android:padding="5dp"
|
|
|
|
android:layout_marginTop="10dp"
|
|
|
|
android:id="@+id/about_thanks_logo"
|
|
|
|
android:layout_width="match_parent"
|
2019-11-07 17:52:12 +01:00
|
|
|
android:textColor="?colorAccent"
|
2017-10-08 11:54:41 +02:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
android:textSize="16sp"
|
2019-09-06 17:55:14 +02:00
|
|
|
android:text="@string/thanks_text_logo" />
|
2017-10-08 11:54:41 +02:00
|
|
|
|
2019-05-18 11:10:30 +02:00
|
|
|
<app.fedilab.android.helper.ExpandableHeightListView
|
2017-10-08 11:54:41 +02:00
|
|
|
android:id="@+id/lv_designers"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:scrollbars="none"
|
2019-09-06 17:55:14 +02:00
|
|
|
android:divider="@null" />
|
|
|
|
|
2019-02-08 19:11:54 +01:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/txt_designers"
|
|
|
|
android:visibility="gone"
|
|
|
|
android:textSize="16sp"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content" />
|
2017-10-08 11:54:41 +02:00
|
|
|
<!-- About contributors -->
|
|
|
|
|
2017-08-17 19:33:23 +02:00
|
|
|
<TextView
|
2017-09-03 10:36:27 +02:00
|
|
|
android:padding="5dp"
|
|
|
|
android:layout_marginTop="10dp"
|
2017-08-17 19:33:23 +02:00
|
|
|
android:id="@+id/about_thanks_dev"
|
|
|
|
android:layout_width="match_parent"
|
2019-11-07 17:52:12 +01:00
|
|
|
android:textColor="?colorAccent"
|
2017-08-29 11:07:47 +02:00
|
|
|
android:layout_height="wrap_content"
|
2017-09-03 10:36:27 +02:00
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
android:textSize="16sp"
|
2019-09-06 17:55:14 +02:00
|
|
|
android:text="@string/thanks_text_dev" />
|
2017-09-03 10:36:27 +02:00
|
|
|
|
2019-05-18 11:10:30 +02:00
|
|
|
<app.fedilab.android.helper.ExpandableHeightListView
|
2017-09-02 19:15:29 +02:00
|
|
|
android:id="@+id/lv_contributors"
|
|
|
|
android:layout_width="match_parent"
|
2017-08-29 11:07:47 +02:00
|
|
|
android:layout_height="wrap_content"
|
2017-09-03 10:36:27 +02:00
|
|
|
android:scrollbars="none"
|
2019-09-06 17:55:14 +02:00
|
|
|
android:divider="@null" />
|
|
|
|
|
2019-02-08 19:11:54 +01:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/txt_thankyou1"
|
|
|
|
android:visibility="gone"
|
|
|
|
android:textSize="16sp"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content" />
|
2019-09-06 17:55:14 +02:00
|
|
|
|
2019-02-08 19:11:54 +01:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/txt_thankyou2"
|
|
|
|
android:visibility="gone"
|
|
|
|
android:textSize="16sp"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content" />
|
2017-10-01 15:02:38 +02:00
|
|
|
|
2017-09-03 10:36:27 +02:00
|
|
|
<!-- About license -->
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
2017-08-29 11:07:47 +02:00
|
|
|
android:layout_height="wrap_content"
|
2017-09-03 10:36:27 +02:00
|
|
|
android:orientation="horizontal"
|
|
|
|
android:padding="5dp">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center"
|
|
|
|
android:layout_weight="2"
|
|
|
|
android:gravity="center"
|
|
|
|
android:text="@string/about_license"
|
2019-09-06 17:55:14 +02:00
|
|
|
android:textSize="16sp" />
|
2017-09-03 10:36:27 +02:00
|
|
|
|
|
|
|
<Button
|
|
|
|
android:id="@+id/about_license"
|
|
|
|
style="@style/Base.Widget.AppCompat.Button.Colored"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="3"
|
2019-09-06 17:55:14 +02:00
|
|
|
android:text="@string/about_license_action" />
|
2017-09-03 10:36:27 +02:00
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<!-- About license -->
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
2017-08-29 11:07:47 +02:00
|
|
|
android:layout_height="wrap_content"
|
2017-09-03 10:36:27 +02:00
|
|
|
android:orientation="horizontal"
|
|
|
|
android:padding="5dp">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center"
|
|
|
|
android:layout_weight="2"
|
|
|
|
android:gravity="center"
|
|
|
|
android:text="@string/about_code"
|
2019-09-06 17:55:14 +02:00
|
|
|
android:textSize="16sp" />
|
2017-09-03 10:36:27 +02:00
|
|
|
|
|
|
|
<Button
|
|
|
|
android:id="@+id/about_code"
|
|
|
|
style="@style/Base.Widget.AppCompat.Button.Colored"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="3"
|
2019-09-06 17:55:14 +02:00
|
|
|
android:text="@string/about_code_action" />
|
2017-09-03 10:36:27 +02:00
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
|
2019-05-18 16:52:15 +02:00
|
|
|
<!-- About The Kinrar\'s API -->
|
2017-09-03 10:36:27 +02:00
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
2017-08-29 11:07:47 +02:00
|
|
|
android:layout_height="wrap_content"
|
2017-09-03 10:36:27 +02:00
|
|
|
android:orientation="horizontal"
|
|
|
|
android:padding="5dp">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center"
|
|
|
|
android:layout_weight="2"
|
|
|
|
android:gravity="center"
|
|
|
|
android:text="@string/about_thekinrar"
|
2019-09-06 17:55:14 +02:00
|
|
|
android:textSize="16sp" />
|
2017-09-03 10:36:27 +02:00
|
|
|
|
|
|
|
<Button
|
|
|
|
android:id="@+id/about_thekinrar"
|
|
|
|
style="@style/Base.Widget.AppCompat.Button.Colored"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="3"
|
2019-09-06 17:55:14 +02:00
|
|
|
android:text="@string/about_thekinrar_action" />
|
2017-09-03 10:36:27 +02:00
|
|
|
</LinearLayout>
|
|
|
|
|
2019-05-18 16:52:15 +02:00
|
|
|
<!-- About Trunk\'s API -->
|
2018-09-12 10:36:19 +02:00
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="horizontal"
|
|
|
|
android:padding="5dp">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center"
|
|
|
|
android:layout_weight="2"
|
|
|
|
android:gravity="center"
|
|
|
|
android:text="@string/about_trunk"
|
2019-09-06 17:55:14 +02:00
|
|
|
android:textSize="16sp" />
|
2018-09-12 10:36:19 +02:00
|
|
|
|
|
|
|
<Button
|
|
|
|
android:id="@+id/about_trunk"
|
|
|
|
style="@style/Base.Widget.AppCompat.Button.Colored"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="3"
|
2019-09-06 17:55:14 +02:00
|
|
|
android:text="@string/about_trunk_action" />
|
2018-09-12 10:36:19 +02:00
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
|
2017-09-03 10:36:27 +02:00
|
|
|
<!-- About translation -->
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
2017-08-29 11:07:47 +02:00
|
|
|
android:layout_height="wrap_content"
|
2017-09-03 10:36:27 +02:00
|
|
|
android:orientation="horizontal"
|
|
|
|
android:padding="5dp">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center"
|
|
|
|
android:layout_weight="2"
|
|
|
|
android:gravity="center"
|
|
|
|
android:text="@string/about_yandex"
|
2019-09-06 17:55:14 +02:00
|
|
|
android:textSize="16sp" />
|
2017-09-03 10:36:27 +02:00
|
|
|
|
|
|
|
<Button
|
|
|
|
android:id="@+id/about_translation"
|
|
|
|
style="@style/Base.Widget.AppCompat.Button.Colored"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="3"
|
2019-09-06 17:55:14 +02:00
|
|
|
android:text="@string/about_yandex_action" />
|
2017-09-03 10:36:27 +02:00
|
|
|
</LinearLayout>
|
2017-07-07 19:26:26 +02:00
|
|
|
</LinearLayout>
|
2017-09-03 10:36:27 +02:00
|
|
|
</ScrollView>
|