Show progress dialog on mark/unmark photos not for upload (#5322)

This commit is contained in:
Aryan Arora 2023-10-03 19:47:29 +05:30 committed by GitHub
parent b314fe1896
commit 373c6201bd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 83 additions and 26 deletions

View file

@ -1,11 +1,12 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal"
android:id="@+id/progressDialog"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginHorizontal="10dp"
android:paddingVertical="20dp"
android:layout_weight="2"
android:layout_height="wrap_content">
android:orientation="horizontal"
android:paddingVertical="20dp">
<ProgressBar
android:layout_width="0dp"
@ -13,11 +14,12 @@
android:layout_weight="0.6" />
<TextView
android:id="@+id/progressDialogText"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:text="@string/pausing_upload"
android:layout_weight="1.5"
android:layout_gravity="center"
android:layout_weight="1.5"
android:text="@string/pausing_upload"
android:textSize="14sp" />
</LinearLayout>