Can someone tell me how to lock my application to a portrait mode? Is it a simple configuration in the manifest file?
Also, you may have to add the following to your activity element:
android:configChanges="keyboardHidden"
That way, the OS won't change the orientation when the user opens a sliding keyboard.