Shre555 wrote: > Hi, > > I want a application level object in Android.Here is the > scenario... Suppose I want to pass a object from Activity A to > Activity B then to Activity C D......... Then I will have to pass > that object from Activity A to B then to C then to D....... Passing > the Parcel Through the Bundle. Is there a Object in Android which can > be accessed by all the Activities and its lifetime is same as the > lifetime of the application.
You could create a custom Application object, or you could use a Service, or you could use static data members. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://twitter.com/commonsguy _Android Programming Tutorials_ Version 1.0 Available! --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---

