[android-developers] Re: ListActivity and progressbars?

2008-12-02 Thread Will Ryan
I also experienced a similar problem. This was resolved when I made sure that the root activity was calling setProgressBarIndeterminateVisibility(true); If you try to call this from Activities that have been loaded into tabs for example (where the tabs are created as a separate Activity), I

[android-developers] Re: ListActivity and progressbars?

2008-12-02 Thread Guillaume Perrot
Yes, window features can only be set in a root activity. 2008/12/2 Will Ryan [EMAIL PROTECTED] I also experienced a similar problem. This was resolved when I made sure that the root activity was calling setProgressBarIndeterminateVisibility(true); If you try to call this from Activities

[android-developers] Re: ListActivity and progressbars?

2008-11-17 Thread Guillaume Perrot
Your code is quite strange because when you perform UI operations, it has to be on the main thread, so you normally have to use an Handler to post actions on the UI thread when you are in another thread. I am surprised it works. Plus I checked your CategoryList.java at google code, I didn't find

[android-developers] Re: ListActivity and progressbars?

2008-11-15 Thread Guillaume Perrot
I have simular issues with TabActivity. On Nov 14, 7:00 pm, aadamson [EMAIL PROTECTED] wrote: I've about pulled out my hair over this one.  Not that it's a huge deal, but I would like to know why this doesn't work? I have a main class that extends listactivity.  In it's oncreate method, I