enter code hereHi, everybody...

I have a problem. I need go from one activity to another. My second activity have a big xml layout, with a lot of elements (I'm speaking about four hundred aprox.), then it takes a few seconds (too much) to show this second Activity.

Mi question is ¿How can I show a Progress dialog between two activities?

I'm trying to use a background task to do this.

I have this method in my Activity A:

  private void goToYear() {
   Intent intent = new Intent();
   intent.setClass (getBaseContext(), YearActivity.class);
   startActivity( intent);
  }

And in my Activity B:

public class YearActivity extends Activity {

 private String  TAG = "YearActivity ::";

 private ProgressDialog pd = null;


    @Override
    public void onCreate( Bundle savedInstanceState) {
        super.onCreate( savedInstanceState);

        // Show the ProgressDialog on this thread
        this.pd = ProgressDialog.show(this, "Working...", "Calculating the screen...", true, false);

        // Start a new thread that will download all the data
        new MakeYearTask().execute();

    }

    private void initCalendar () {
      this.setContentView( R.layout.calendar_year);   

   ...
   ...
   initialize values
   ...
   ...

    }


    private class MakeYearTask extends AsyncTask<String, Void, Object> {
        protected Void doInBackground(String... args) {
            Log.i("YearActivity::MakeYearTask", "MakeYearTask Background thread starting");

   YearActivity.this.initCalendar();


        }

        protected void onPostExecute(Object result) {

            if (YearActivity.this.pd != null) {
             YearActivity.this.pd.dismiss();
            }
        }
   } 
}

You can see that I make the setContentView out of the onCreate method...

This don't work. Give me one exception, like this:

12-09 19:49:17.729: ERROR/AndroidRuntime(218): java.lang.RuntimeException: An error occured while executing doInBackground()
12-09 19:49:17.729: ERROR/AndroidRuntime(218):     at android.os.AsyncTask$3.done(AsyncTask.java:200)
12-09 19:49:17.729: ERROR/AndroidRuntime(218):     at java.util.concurrent.FutureTask$Sync.innerSetException(FutureTask.java:234)
12-09 19:49:17.729: ERROR/AndroidRuntime(218):     at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:258)
12-09 19:49:17.729: ERROR/AndroidRuntime(218):     at java.util.concurrent.FutureTask.run(FutureTask.java:122)
12-09 19:49:17.729: ERROR/AndroidRuntime(218):     at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:648)
12-09 19:49:17.729: ERROR/AndroidRuntime(218):     at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:673)
12-09 19:49:17.729: ERROR/AndroidRuntime(218):     at java.lang.Thread.run(Thread.java:1060)
12-09 19:49:17.729: ERROR/AndroidRuntime(218): Caused by: android.view.ViewRoot$CalledFromWrongThreadException: Only the original thread that created a view hierarchy can touch its views.
12-09 19:49:17.729: ERROR/AndroidRuntime(218):     at android.view.ViewRoot.checkThread(ViewRoot.java:2629)
12-09 19:49:17.729: ERROR/AndroidRuntime(218):     at android.view.ViewRoot.requestLayout(ViewRoot.java:545)
12-09 19:49:17.729: ERROR/AndroidRuntime(218):     at android.view.View.requestLayout(View.java:7657)
12-09 19:49:17.729: ERROR/AndroidRuntime(218):     at android.view.ViewGroup.addView(ViewGroup.java:1749)
12-09 19:49:17.729: ERROR/AndroidRuntime(218):     at android.view.ViewGroup.addView(ViewGroup.java:1731)
12-09 19:49:17.729: ERROR/AndroidRuntime(218):     at com.android.internal.policy.impl.PhoneWindow.generateLayout(PhoneWindow.java:2186)
12-09 19:49:17.729: ERROR/AndroidRuntime(218):     at com.android.internal.policy.impl.PhoneWindow.installDecor(PhoneWindow.java:2239)
12-09 19:49:17.729: ERROR/AndroidRuntime(218):     at com.android.internal.policy.impl.PhoneWindow.setContentView(PhoneWindow.java:309)
12-09 19:49:17.729: ERROR/AndroidRuntime(218):     at android.app.Activity.setContentView(Activity.java:1620)
12-09 19:49:17.729: ERROR/AndroidRuntime(218):     at es.jota.app.YearActivity.initCalendar(YearActivity.java:42)
12-09 19:49:17.729: ERROR/AndroidRuntime(218):     at es.jota.app.YearActivity.access$0(YearActivity.java:41)
12-09 19:49:17.729: ERROR/AndroidRuntime(218):     at es.jota.app.YearActivity.initCalendar$MakeYearTask.doInBackground(YearActivity.java:120)
12-09 19:49:17.729: ERROR/AndroidRuntime(218):     at es.jota.app.YearActivity.initCalendar$MakeYearTask.doInBackground(YearActivity.java:1)
12-09 19:49:17.729: ERROR/AndroidRuntime(218):     at android.os.AsyncTask$2.call(AsyncTask.java:185)
12-09 19:49:17.729: ERROR/AndroidRuntime(218):     at java.util.concurrent.FutureTask$Sync.innerRun(FutureTask.java:256)
12-09 19:49:17.729: ERROR/AndroidRuntime(218):     ... 4 more
link|improve this question
Answer how to create progress bar between two activity link – Sufferer Jul 20 '11 at 19:21
feedback

3 Answers

This may not be the best solution but what you can do is extend the basic Theme used in android and set the window background to an image that indicates the activity is loading. Then set that theme to Activity B. Now while Activity B is loading it will show your drawable instead of the black window. You may even be able to get creative with an animation-list and get some kind of indeterminate loading effect.

link|improve this answer
Mmmm. I think like you, but if it works, it will be ok for me :) I'm going to try that, and I tell you what happend. Thanks. – Jose Manuel Dec 9 '10 at 21:17
I don't try this yet, but I put in my "to do" list. When I try this, I tell you the result. Thanks! – Jose Manuel Dec 10 '10 at 22:23
looking forward to hearing/seeing the results – schwiz Dec 10 '10 at 23:29
feedback

Have you tried doing new MakeYearTask().execute(); in onResume() instead?

While not elegant you could fire a delayed thread post in on create to wait for a couple of millis.

Edit:

I just this error:

(Caused by: android.view.ViewRoot$CalledFromWrongThreadException: Only the original thread that created a view hierarchy can touch its views)

are you modifying the UI from the AsyncTask?

You should just build the data in doInBackground(), but update the ui in onPostExecute().

link|improve this answer
Yes, right now, with the same result. :( Thanks in any case. – Jose Manuel Dec 9 '10 at 21:13
Edited my answer with aditional info. Maybe its that. – blindstuff Dec 9 '10 at 21:42
I try all this... thanks, but I can't do it work!! :( – Jose Manuel Dec 10 '10 at 22:22
feedback

Your formatting is a little off, but if I understand correctly, you are calling initCalendar() in your AsyncTask's doInBackground(). You are not allowed to do that with AsyncTasks.

Use doInBackground() for long-running operations such as HTTP calls, DB accesses, etc. Once you have the stuff you need, call initCalendar() from onPostExecute().

link|improve this answer
Sorry by the format. I fix it :D I going to try to understand your answer. I'm spanish and my english is not so good. – Jose Manuel Dec 10 '10 at 12:18
Basically, what I'm saying is move this YearActivity.this.initCalendar(); to the onPostExecute() method, and I'm trying to explain why. :) – Zarah Dec 10 '10 at 13:18
Thanks by the explanation :D. I try this, but not work :( – Jose Manuel Dec 10 '10 at 22:19
Why? What error are you getting? – Zarah Dec 11 '10 at 4:05
Hi Zarah! It's dificult to explain to me. If I put the YearActivity.this.initCalendar(); on the onPostExecute(), I don't have any error, but the ProgressDialog don't is showing... The transition between activities takes a few seconds, and this is the thing I want prevent. I want show the progressdialog to make the wait more confortable. Do you know what I mean? It's for this reason that I use the AsyncTask. Perhaps another way to do this exists, but I don't know. :( – Jose Manuel Dec 11 '10 at 12:54
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

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