Hi all ,
I developed application for portrait mode in android.what the changes i have to made,so that my application also fit for Landscape orientation
Thanks in advance...
Hi all ,
I developed application for portrait mode in android.what the changes i have to made,so that my application also fit for Landscape orientation
Thanks in advance...
Make sure you use layout_width
as "fill_parent" where ever required.
Technically speaking, you don't HAVE to make any changes for it to fit to landscape. It you're using the standard wrap_content
and fill_parent
for your width and height, your layout will automatically adjust when you change orientations.
With that said, you will often WANT to change to a different layout when switching from portrait to landscape, as a layout that looks good vertically may be unusable when horizontal. You can add a new folder beside your /layout
folder titled layout-land
. In this, make a new XML file with the same title as your previous layout, and then change the layout from there. Be sure that any and all defined android:id
s exist in both the original and landscape layout.