views:

30

answers:

1

I have developed an App that launches and works fine on Android 1.5 and 1.6.

When I try and use it on version higher then that the app's activity starts, progress dialogs popup and I can see my AsyncTask executing and the info being returned via Logcat. No errors or exceptions are shown.

But the Activity never displays. All I see is the progress dialog showing over the home screen and then nothing. The process is active and running under the DDMS view.

Any ideas?

A: 

I found the problem.

I had to explicity call setVisible(true) in my onCreate() method. Even though the root layout component of the activities had visibility="true" already.

androider