Snehal wrote: > Hello, > > I have deployed my application on the android handset and it worked > fine and when I tried to turn the phone horizontally the buttons that > were docked at the bottom were visible only partially, that is only a > part of the buttons could be visible. > > Could anyone please tell me how to view the buttons docked at the > bottom though the handset was turned vertically or horizontally?
Put the current layout inside a ScrollView. Or, design a layout that handles alternative screen sizes better, such that the buttons are not partially off-screen. Or, write two layouts, one for portrait and one for landscape, and put the latter in res/layout-land/ instead of res/layout. If you post the layout that is giving you trouble, we might be able to offer more concrete help. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://twitter.com/commonsguy _The Busy Coder's Guide to Android Development_ Version 2.0 Available! --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Android Beginners" 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-beginners?hl=en -~----------~----~----~----~------~----~------~--~---

