I am designing an application that fetches data from a sqlite database on the click of a button . I want to display a wait message or progress bar during the time of the fetch only if the process is long like say more than 3 secs . Otherwise it can just proceed with the program . How do i do this . i tried showing a progress dialog using the following code but it only waits for the specified sleep time and proceeds without showing anything .... plss help

protected void GetOrders() 
{
    ProgressDialog dialog = null;
    try
    {
        dialog=ProgressDialog.show(loginScreen.this,"PLEASE WAIT","LOADING CONTENTS ..",true);
        //Accesses database 
        allOrders=ProductionOrdersBL.GetOrder();
        Thread.sleep(4000);

    }
    catch(Exception e){}
    finally
    {
        dialog.dismiss(); 
    }
}
link|improve this question

73% accept rate
feedback

2 Answers

first of all for showing progress bar you should use AsyncTask()(this). and then in its preExecute() method say

try{
thread.sleep(3000);
dialog=ProgressDialog.show(loginScreen.this,"PLEASE WAIT","LOADING CONTENTS ..",true);

}catch(){
}

then in postExecute() use

if(dialog.isShowing()){
 dialog.dismiss
}
link|improve this answer
Thank you ntc .... – Saiesh Aug 9 '11 at 10:28
Hey i am still stuck .... the doInBackground() method in AsyncTask returns to the postExecute method even before it is completely done ... How do i stop this ? – Saiesh Aug 9 '11 at 12:02
thats something impossible.. that will never happen. may be there is some other problem, may be exceptions while fetching data from server. always postExecute() is called only after doInBackground() is complete.. – sandy Aug 9 '11 at 12:07
Ok imagine this .... i show my dialog on preExecute() and in doInBackground() i call a thread.sleep(4000) and in postExecute() i call dialog.dismiss() . the postExecute() method is executed even before the sleep period is complete . Is this because i am using a thread or something .... – Saiesh Aug 9 '11 at 12:13
don't put sleep method in doInbackgeround(), do it preExecute() like i told. then in postExecute() use if(dialog.isShowing()){} – sandy Aug 9 '11 at 12:23
show 2 more comments
feedback
up vote 0 down vote accepted

I found the solution ... I had some operations after the call of the execute method . Thus while the doInBackground() method was executing in a non-UI thread , my UI thread simply continued executing the code that followed the execute method call ... The solution is to perform no task in the main UI thread following the execute method call :)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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