progressdialog Questions
8
I would like to show a progress dialog within a dialog fragment.
However when I am using this code
ProgressDialog prog = new ProgressDialog(ctx);
prog.setTitle(getString(R.string.pleaseWait));
pr...
Arana asked 24/4, 2014 at 14:39
18
Solved
I want to show ProgressDialog when I click on Login button and it takes time to move to another page. How can I do this?
Mcginley asked 4/5, 2012 at 9:22
22
I have come across to see that ProgressDialog is now deprecated. What would be alternate one to use in place of that apart from ProgressBar.
I am using android studio version 2.3.3.
ProgressDial...
Verisimilar asked 28/7, 2017 at 12:1
5
Solved
In a long-running operation, I'm showing a popup dialog (created from ProgressDialog to prevent other operations from happening).
I have made it non-cancellable with setCancelable(false), so I can...
Bess asked 23/3, 2010 at 18:10
5
I have a login form with two textfields 'UserName', 'Password' & a button 'Login'. On tap of login button I am calling an API. I want to show a CircularProgressIndicator during this api call. P...
Midmost asked 19/7, 2018 at 5:51
3
Solved
I use an AsyncTask with a ProgressDialog in it.
This automatically causes a background dim of about 40%. I want to turn this dim off (0% dim), but what I tried, didn't work:
myLoadingDialog = new ...
Dirtcheap asked 17/10, 2012 at 16:26
3
alertDialog = new ProgressDialog(this);
alertDialog.setMessage(getResources().getString(R.string.loader));
alertDialog.setCancelable(false);
alertDialog.show();
Simply when I do this, green ...
Concordant asked 15/2, 2015 at 13:55
5
Is there way to show progress dialog on snackBar while getting data from server for pagination inside AsyncTask.If is this possible then how to do this.Please give suggestions.
Rhodes asked 11/2, 2016 at 7:23
2
Solved
I just tried to implement a progressdialog and I have some issues to change the text during my long and complex calculations.
for (String aString:myStringArray){
Log.v(TAG, aString);
mProgressDi...
Oystercatcher asked 16/10, 2010 at 0:28
5
Solved
I would like to show a modal progress "wheel" overlay on my view.
The ProgressDialog comes close, but I do not want the dialog background or border.
I tried setting the background drawable of the...
Handbreadth asked 9/3, 2010 at 12:47
13
Solved
Android 2.3.3
I have a progressdialog that shows, Loading.. as text. Here is the code for the progressdialog .
progressDialog = new ProgressDialog(mContext);
progressDialog.setIndeterminate(tru...
Gabrila asked 7/6, 2013 at 9:12
6
Solved
Say I have a created a dialog in my Android app like so:
private static ProgressDialog dialog;
dialog = ProgressDialog.show(MainActivity.this, "", "Downloading Files. Please wait...", true);
Now...
Takeover asked 1/6, 2011 at 15:29
2
Solved
why do I have to click twice on back button to reach previous activity when progress dialog running?
I want when user wants to go back to previous activity while dialog is running ,it should be single click (like youtube).in my case ,on first back press click progress dialog stops and displays a b...
Holley asked 13/1, 2020 at 8:33
11
Solved
I'm using ProgressDialog to prevent the user from interacting while the device is downloading stuff from internet.
everything was working fine until my client managed to produce this bug :
"07-0...
Heddie asked 7/7, 2011 at 17:34
5
Solved
I want to set the back ground to the transparent , so I have set the following code in
styles.xml
<style name="dialog" parent="@android:style/Theme.Dialog">
<item name="android:windowF...
Larcher asked 22/2, 2014 at 16:49
3
Basically, Android Google Sign In is flashing a small empty white box after the user presses the sign in button and before Google finishes the sign in process. This all happens pretty fast but I wo...
Moldavia asked 4/1, 2016 at 21:15
7
Solved
I am trying to add a progress/loading bar to my application that uses WebView. I am confused on how to implement a progress bar that appears every time a link is clicked.
Current code:
public cla...
None asked 2/12, 2010 at 2:20
8
Solved
I am using custom ProgressDialog in my application, I am able to make it custom but I also want to remove the upper border or window of progressDialog.
In styles.xml I define customDialog as
<...
Pent asked 17/12, 2012 at 7:33
2
Solved
In my app I am doing some intense work in AsyncTask as suggested by Android tutorials and showing a ProgressDialog in my main my activity:
dialog = ProgressDialog.show(MyActivity.this, "title", "t...
Heft asked 4/1, 2011 at 8:48
7
Solved
I'm trying to display a custom progressdialog while loading RSS feed from an HTTP server, I made a hard search, but nothing helped me to do this, the only thing I know is that the solution should u...
Vasiliu asked 27/12, 2010 at 11:22
2
I develop automation testing using via espresso library. Sometime I
ever got error message "Could not launch intent Intent" when running test is
make long time I call view btn click after api res...
Bratwurst asked 23/1, 2019 at 5:42
4
Solved
I want to replace my AsyncTask with RxJava in android. My current AsyncTask goes like this:
public class ProgressBarAsyncTask extends AsyncTask<Void,Void,Void> {
@Override
protected voi...
Inspirational asked 19/2, 2017 at 0:47
2
is it possible to change the progressDialog text?
my code:
progressDialog = ProgressDialog.show(BackupActivity.this, "In progress", "test1");
new Thread() {
public void run() {
try{
sleep(100...
Ceciliacecilio asked 6/2, 2013 at 10:54
9
Since the ProgressDialog is deprecated from the Android version O, I'm still finding a better way out to do my task. The task is to move from my activity to the fragment. Everything is workin...
Spandex asked 27/7, 2017 at 12:41
1
I wrote an Android app using MVVM where I am calling webservice from ViewModel and storing results in RoomDB. In the View I am observing ViewModel for live data.
I need to show ProgressDialog while...
Paba asked 10/7, 2018 at 10:23
1 Next >
© 2022 - 2024 — McMap. All rights reserved.