[android-developers] Re: ViewFlipper not working inside a class which extends LinearLayout

2010-04-22 Thread Nithin
Thanks for your reply.. solved the issue.. I put the flipper creation code inside the runOnUIThread() and its working fine.. Nithin On Apr 22, 10:25 pm, Streets Of Boston wrote: > What thread is calling 'new ViewFlipper(ctContext)'? > Is it the main UI-thread? > If not, the calling thread must

[android-developers] Re: ViewFlipper not working inside a class which extends LinearLayout

2010-04-22 Thread Streets Of Boston
What thread is calling 'new ViewFlipper(ctContext)'? Is it the main UI-thread? If not, the calling thread must have a message-loop associated with it (A looper-thread). If it's not a looper-thread, you can't call 'new ViewFlipper(ctContext)' this way. On Apr 22, 10:58 am, Nithin wrote: > Hi, > >