[android-developers] Re: image view on Customized dialog box

2012-11-22 Thread Piren
not sure why you're using the .Show() method, its best to use onCreateDialog for custom dialogs as well. but either way, ASyncTasks dont run onPostExecute on the UI thread automatically, the run it on the thread the ASyncTask was created in. To avoid your issue either add a Handler to run the on

Re: [android-developers] Re: image view on Customized dialog box

2012-11-22 Thread ponnu swamy
but how can i use runOnUiThread method because i extend my customized dialog class from dialog class not from activity -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-developers@googlegroups.com

Re: [android-developers] Re: image view on Customized dialog box

2012-11-22 Thread Piren
It's a view, it can get the activity. On Thursday, November 22, 2012 4:24:33 PM UTC+2, Mr cool wrote: > > but how can i use runOnUiThread method because i extend my customized > dialog class from dialog class not from activity > > -- You received this message because you are subscribed to the