On Thu, Oct 13, 2011 at 7:08 AM, vani reddy <[email protected]>wrote:
> How to switch to different activity without calling > Intent intent = new Intent(CurrentActivity.this,NewActivity.class); > startActivity(intent); > I dont want to call oncreate at all? > You have to call onCreate at least the first time you ... well, create ... the Activity. After that if you use the right flags you can probably keep going back to that instance. ------------------------------------------------------------------------------------------------- TreKing <http://sites.google.com/site/rezmobileapps/treking> - Chicago transit tracking app for Android-powered devices -- 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

