mirror of
https://github.com/adolfintel/OpenPods.git
synced 2026-09-15 07:16:10 -04:00
80 lines
2.9 KiB
XML
80 lines
2.9 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:background="#FFFFFF"
|
|
android:paddingHorizontal="@dimen/padding_default"
|
|
android:paddingTop="@dimen/padding_default"
|
|
tools:context=".ui.AboutActivity"
|
|
tools:ignore="ContentDescription,ButtonStyle">
|
|
|
|
<ImageView
|
|
android:id="@+id/logo"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="90dp"
|
|
android:layout_marginBottom="16dp"
|
|
android:src="@drawable/logo" />
|
|
|
|
<!-- LEGAL DANGER ZONE
|
|
The following actions are a violation of the GNU GPLv3 License:
|
|
- Removing, hiding or altering the license or the code that displays it
|
|
- Removing or changing the link to the original source code or the code that displays it
|
|
- Removing or changing the donation link of the original project or the code that displays it
|
|
|
|
If you're forking the application, it MUST be made clear that your version is a fork,
|
|
who the original author is, and all references to the original project and license must not be removed.
|
|
You are free to add links to your project, donations, whatever to this activity.
|
|
|
|
I am constantly monitoring all major Android app stores for violations. You have been warned.
|
|
-->
|
|
|
|
<TextView
|
|
android:id="@+id/about1"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_below="@id/logo"
|
|
android:layout_marginBottom="16dp"
|
|
android:gravity="center"
|
|
android:text="@string/about_dev"
|
|
android:textColor="#404040" />
|
|
|
|
<LinearLayout
|
|
android:id="@+id/buttons"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_below="@id/about1"
|
|
android:layout_centerHorizontal="true"
|
|
android:layout_marginBottom="12dp"
|
|
android:gravity="center">
|
|
|
|
<Button
|
|
android:id="@+id/website"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/website" />
|
|
|
|
<Button
|
|
android:id="@+id/github"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/github" />
|
|
|
|
<Button
|
|
android:id="@+id/donate"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:backgroundTint="#EABF80"
|
|
android:text="@string/donate" />
|
|
|
|
</LinearLayout>
|
|
|
|
<WebView
|
|
android:id="@+id/license"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_below="@id/buttons" />
|
|
|
|
<!-- END OF LEGAL DANGER ZONE -->
|
|
|
|
</RelativeLayout> |