On Friday, August 17, 2012 12:02:51 PM UTC+3, |-NK-| wrote: > Hi, > > I am developing an application in which on one screen I need to call some > funcations that does some calculations and sends results at particular > interval. > > > > In between I need to show a progress bar that keeps on running untill I get > the final calculated result. > > > > Once I get the result I am navigating to another screen. > > > > Now what I need is that the progressbar should appear in another window which > will act as modal window and should appear above my screen. > > > > Is that possible? > > > > Thanks. you could use DialogFragment to create the floating dialog and in the constructor you can pass the parameters you want. besides that i recommend using AsyncTask for the calculation and posting partial progress and the final result.
-- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

