summaryrefslogtreecommitdiffstats
path: root/app/src/main/res/layout/popup_release_notes.xml
diff options
context:
space:
mode:
Diffstat (limited to 'app/src/main/res/layout/popup_release_notes.xml')
-rw-r--r--app/src/main/res/layout/popup_release_notes.xml111
1 files changed, 111 insertions, 0 deletions
diff --git a/app/src/main/res/layout/popup_release_notes.xml b/app/src/main/res/layout/popup_release_notes.xml
new file mode 100644
index 000000000..3156a61b5
--- /dev/null
+++ b/app/src/main/res/layout/popup_release_notes.xml
@@ -0,0 +1,111 @@
+<?xml version="1.0" encoding="utf-8"?><!--
+ Copyright 2022 Thomas Schneider
+
+ This file is a part of Fedilab
+
+ 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.
+
+ Fedilab is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even
+ the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
+ Public License for more details.
+
+ You should have received a copy of the GNU General Public License along with Fedilab; if not,
+ see <http://www.gnu.org/licenses>.
+-->
+
+<androidx.appcompat.widget.LinearLayoutCompat 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"
+ android:layout_height="match_parent"
+ android:orientation="vertical">
+
+ <androidx.recyclerview.widget.RecyclerView
+ android:id="@+id/releasenotes"
+ android:layout_width="match_parent"
+ android:layout_height="0dp"
+ android:layout_margin="5dp"
+ android:layout_weight="1" />
+
+ <androidx.appcompat.widget.LinearLayoutCompat
+ android:id="@+id/acccount_container"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:layout_marginStart="20dp"
+ android:layout_marginEnd="20dp"
+ android:orientation="horizontal"
+ android:visibility="invisible"
+ app:layout_constraintBottom_toTopOf="@+id/about_support"
+ tools:visibility="visible">
+
+ <androidx.appcompat.widget.AppCompatImageView
+ android:id="@+id/account_pp"
+ android:layout_width="60dp"
+ android:layout_height="60dp"
+ android:layout_margin="10dp"
+ android:contentDescription="@string/profile_picture" />
+
+ <androidx.appcompat.widget.LinearLayoutCompat
+ android:layout_width="0dp"
+ android:layout_height="wrap_content"
+ android:layout_weight="1"
+ android:orientation="vertical"
+ android:padding="10dp">
+
+ <androidx.appcompat.widget.AppCompatTextView
+ android:id="@+id/account_dn"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:textAppearance="@style/TextAppearance.AppCompat.Body1"
+ android:textSize="16sp" />
+
+ <androidx.appcompat.widget.AppCompatTextView
+ android:id="@+id/account_un"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:textAppearance="@style/TextAppearance.AppCompat.Body1"
+ android:textSize="14sp" />
+ </androidx.appcompat.widget.LinearLayoutCompat>
+
+
+ <androidx.appcompat.widget.AppCompatImageButton
+ android:id="@+id/account_follow"
+ style="@style/Widget.AppCompat.Button.Colored"
+ android:layout_width="48dp"
+ android:layout_height="48dp"
+ android:layout_margin="10dp"
+ android:contentDescription="@string/make_an_action"
+ android:scaleType="fitCenter"
+ android:tint="@color/white"
+ android:visibility="gone"
+ app:layout_constraintStart_toEndOf="@id/avatar_container"
+ app:layout_constraintTop_toBottomOf="@id/banner_container"
+ tools:src="@drawable/ic_baseline_person_add_24"
+ tools:visibility="visible" />
+
+ </androidx.appcompat.widget.LinearLayoutCompat>
+
+ <com.google.android.material.button.MaterialButton
+ android:id="@+id/about_support"
+ style="@style/Widget.MaterialComponents.Button.OutlinedButton"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_gravity="center"
+ android:layout_marginTop="10dp"
+ android:text="@string/support_the_app_on_liberapay"
+ android:textColor="@color/cyanea_accent_dark_reference"
+ app:strokeColor="@color/cyanea_accent_dark_reference" />
+
+ <com.google.android.material.button.MaterialButton
+ android:id="@+id/about_support_paypal"
+ style="@style/Widget.MaterialComponents.Button.OutlinedButton"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_gravity="center"
+ android:text="PayPal"
+ android:textColor="@color/cyanea_accent_dark_reference"
+ app:strokeColor="@color/cyanea_accent_dark_reference"
+ tools:ignore="HardcodedText" />
+</androidx.appcompat.widget.LinearLayoutCompat>