summaryrefslogtreecommitdiff
path: root/app/src/main/res/layout/v_add_provider.xml
diff options
context:
space:
mode:
authorcyBerta <cyberta@riseup.net>2021-06-24 23:15:41 +0200
committercyBerta <cyberta@riseup.net>2021-07-21 22:02:24 +0200
commit236c17ec3f4348a9f0d4ec4a2454b9fbfaf8707f (patch)
treeaa6259310a625e6e58aa16a661ca25fc4bb34d7f /app/src/main/res/layout/v_add_provider.xml
parentfca60f51acf8eea48fc4086db00cba1097d097b7 (diff)
show tor status info in provider setup activies
Diffstat (limited to 'app/src/main/res/layout/v_add_provider.xml')
-rw-r--r--app/src/main/res/layout/v_add_provider.xml20
1 files changed, 18 insertions, 2 deletions
diff --git a/app/src/main/res/layout/v_add_provider.xml b/app/src/main/res/layout/v_add_provider.xml
index afcae4af..1448e7e7 100644
--- a/app/src/main/res/layout/v_add_provider.xml
+++ b/app/src/main/res/layout/v_add_provider.xml
@@ -1,11 +1,13 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout 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:id="@+id/loading_screen"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
- android:visibility="gone">
+ android:visibility="gone"
+ tools:visibility="visible">
<androidx.appcompat.widget.AppCompatImageView
android:layout_width="wrap_content"
@@ -18,7 +20,7 @@
/>
<androidx.appcompat.widget.AppCompatTextView
- android:id="@+id/progressbar_description"
+ android:id="@+id/progressbar_title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:fadingEdge="horizontal"
@@ -29,6 +31,20 @@
android:layout_marginBottom="@dimen/standard_margin"
/>
+ <androidx.appcompat.widget.AppCompatTextView
+ android:id="@+id/progressbar_description"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:fadingEdge="horizontal"
+ android:singleLine="true"
+ android:text="@string/configuring_provider"
+ android:textAppearance="@style/Base.TextAppearance.AppCompat.Small"
+ android:layout_marginTop="@dimen/standard_margin"
+ android:layout_marginBottom="@dimen/standard_margin"
+ tools:text="test"
+ tools:visibility="visible"
+ />
+
<ProgressBar
android:id="@+id/progressbar"
style="@style/Widget.AppCompat.ProgressBar.Horizontal"