apps-android-commons/app/src/main/res/layout/progress_dialog.xml
Arin Modi 9431e3770c
Fixed #4836 & #4840 Added the functionality of cancel upload and also solved the small bug of pausing upload (#4843)
* Fixed #4836 & #4840

* Added Pausing PopUp

* Closing Pausing PopUp exactly when pause button disappears

* Managed to display the Pausing Upload

* Added the Pausing Dialog Using Progress Bar

* Added the Pausing Dialog Using Progress Bar

* Added Required Changes

* Added Required Changes-wording change

* Added Required Changes-wording change
2022-02-26 08:41:14 +09:00

23 lines
No EOL
684 B
XML

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