Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/iNPUTmice/Conversations.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Gultsch <daniel@gultsch.de>2021-10-07 10:48:49 +0300
committerDaniel Gultsch <daniel@gultsch.de>2021-10-07 10:48:49 +0300
commit6d2e406ee55be5213b41eeabf4175ca177128cef (patch)
tree20e8e2a573fbbbd365b122c1989478cfc4221612 /src/main/res
parentcc489ef7bfdba59417e0098779d37c7a7a1bcce4 (diff)
attempt to parse Link header from https url scanned from welcome screen
Diffstat (limited to 'src/main/res')
-rw-r--r--src/main/res/layout/activity_uri_handler.xml31
-rw-r--r--src/main/res/values/strings.xml2
2 files changed, 33 insertions, 0 deletions
diff --git a/src/main/res/layout/activity_uri_handler.xml b/src/main/res/layout/activity_uri_handler.xml
new file mode 100644
index 000000000..9eda73c87
--- /dev/null
+++ b/src/main/res/layout/activity_uri_handler.xml
@@ -0,0 +1,31 @@
+<?xml version="1.0" encoding="utf-8"?>
+<layout xmlns:android="http://schemas.android.com/apk/res/android">
+
+ <RelativeLayout
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:background="?colorPrimaryDark"
+ android:padding="24dp">
+
+ <ProgressBar
+ android:id="@+id/progress"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_centerInParent="true"
+ android:indeterminate="true"
+ android:indeterminateTint="@color/white" />
+
+ <TextView
+ android:id="@+id/error"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_below="@+id/progress"
+ android:layout_centerHorizontal="true"
+ android:layout_marginTop="16dp"
+ android:gravity="center_horizontal"
+ android:textAppearance="@style/TextAppearance.Conversations.Body2"
+ android:textColor="@color/white87"
+ android:visibility="invisible" />
+
+ </RelativeLayout>
+</layout> \ No newline at end of file
diff --git a/src/main/res/values/strings.xml b/src/main/res/values/strings.xml
index 6a3815073..4e520e856 100644
--- a/src/main/res/values/strings.xml
+++ b/src/main/res/values/strings.xml
@@ -968,5 +968,7 @@
<string name="backup_started_message">The backup has been started. You’ll get a notification once it has been completed.</string>
<string name="unable_to_enable_video">Unable to enable video.</string>
<string name="plain_text_document">Plain text document</string>
+ <string name="account_registrations_are_not_supported">Account registrations are not supported</string>
+ <string name="no_xmpp_adddress_found">No XMPP address found</string>
</resources>