Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I want to set timeout for Dialog (progress dialog) in android , to make the dialog disappears after a period of time (if there is No response for some action !)

share|improve this question

2 Answers

up vote 6 down vote accepted

The same approach as in this post is verified to work (with long instead of float):

public void timerDelayRemoveDialog(long time, final Dialog d){
    new Handler().postDelayed(new Runnable() {
        public void run() {                
            d.dismiss();         
        }
    }, time); 
}
share|improve this answer
1  
That works... fantastic. Replace "float time" by "long time" – Derzu Feb 27 '12 at 5:07

You could always make a class called ProgressDialogWithTimeout and override the functionality of the show method to return a ProgressDialog and set a timer to do what you wish when that timer goes off. Example:

private static Timer mTimer = new Timer();
private static ProgressDialog dialog;

public ProgressDialogWithTimeout(Context context) {
    super(context);
    // TODO Auto-generated constructor stub
}

public ProgressDialogWithTimeout(Context context, int theme) {
    super(context, theme);
    // TODO Auto-generated constructor stub
}

public static ProgressDialog show (Context context, CharSequence title, CharSequence message)
{
    MyTask task = new MyTask();
            // Run task after 10 seconds
    mTimer.schedule(task, 0, 10000);

    dialog = ProgressDialog.show(context, title, message);
    return dialog;
}

static class MyTask extends TimerTask {

    public void run() {
        // Do what you wish here with the dialog
        if (dialog != null)
        {
            dialog.cancel();
        }
    }
}

Then you would call this in your code as so:

ProgressDialog progressDialog = ProgressDialogWithTimeout.show(this, "", "Loading...");
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.