On Thu, Jul 8, 2010 at 2:48 PM, Saket Srivastav <[email protected]> wrote: > i want them to appear in landscape as well as portrait view.
Use onSaveInstanceState() and onRestoreInstanceState(), or use onRetainNonConfigurationInstance() and getLastNonConfigurationInstance() to propagate your data from the old activity to the newly-created one in the new orientation. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://github.com/commonsguy http://commonsware.com/blog | http://twitter.com/commonsguy Android App Developer Books: http://commonsware.com/books -- You received this message because you are subscribed to the Google Groups "Android Beginners" group. NEW! Try asking and tagging your question on Stack Overflow at http://stackoverflow.com/questions/tagged/android To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-beginners?hl=en

