Re: [android-beginners] Screen problem

2010-07-08 Thread Joel Salas
Do you want them to appear in landscape view? If not, then you can suppress
screen rotation?

On Thu, Jul 8, 2010 at 11:27 AM, Saket Srivastav saketsrivasta...@gmail.com
 wrote:

 When i tilt my android screen to horizontal view, the result output that i
 show on screen disappear. how can i retain those results?

   Regards
 Saket Srivastav

 --
 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
 android-beginners+unsubscr...@googlegroups.comandroid-beginners%2bunsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-beginners?hl=en


-- 
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
android-beginners+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en


Re: [android-beginners] Screen problem

2010-07-08 Thread Saket Srivastav
i want them to appear in landscape as well as portrait view.

  Regards
Saket Srivastav


On Fri, Jul 9, 2010 at 12:06 AM, Joel Salas joelesa...@gmail.com wrote:

 Do you want them to appear in landscape view? If not, then you can suppress
 screen rotation?

 On Thu, Jul 8, 2010 at 11:27 AM, Saket Srivastav 
 saketsrivasta...@gmail.com wrote:

 When i tilt my android screen to horizontal view, the result output that i
 show on screen disappear. how can i retain those results?

   Regards
 Saket Srivastav

 --
 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
 android-beginners+unsubscr...@googlegroups.comandroid-beginners%2bunsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-beginners?hl=en


  --
 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
 android-beginners+unsubscr...@googlegroups.comandroid-beginners%2bunsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-beginners?hl=en


-- 
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
android-beginners+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en


Re: [android-beginners] Screen problem

2010-07-08 Thread Mark Murphy
On Thu, Jul 8, 2010 at 2:48 PM, Saket Srivastav
saketsrivasta...@gmail.com 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
android-beginners+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en