I'm currently creating a side-scroller style game for my final year project for my degree.

I'm just wondering how you make the menu designed for when the phone is in horizontal orientation display, even when the phone is held in it's vertical orientation?

i.e. I want the user to know that the game has to be played with the phone in it's horizontal orientation and want the menu's to only display in the horizontal orientation.

Many thanks in advance.

link|improve this question
feedback

2 Answers

Add the following attribute to your activity in your AndroidManifest.xml:

android:screenOrientation="landscape"

link|improve this answer
Thanks a lot! Such a simple thing as well! I'm a beginner so just getting to grips with things! – KieH22 Nov 20 '10 at 16:56
feedback

Well, I didn't get your question right, but if you are defining your menu via xml

create a new folder in your res folder named

for layout changes:

layout_land

for horizontal specific menu:

 xml-land

for horizontal specific drawables:

drawable-land

and define your menu,layout and drawable changes there.

Further you can tell android framework that you want to handle rotation changes: by adding to your manifest(AndroidManifest.xml) activity child

android:configChanges="keyboardHidden|orientation"
android:screenOrientation="landscape"

Comment exactly what you want.

Cheers!

link|improve this answer
Basically. Imagine you're holding your phone in the vertical position. I want what's displayed on the phone to STILL show as if you were holding the phone horizontally. For example, the game angry birds, it only allows horizontal orientation. The menu displayed doesn't change orientation if you turn the phone into the vertical position. – KieH22 Nov 20 '10 at 16:30
Yup, thats what I thought. You can follow above code instruction. It will work. – Shardul Nov 20 '10 at 16:31
Thanks a lot! Works great! – KieH22 Nov 20 '10 at 16:55
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.