05-26-2011 06:47 AM
Hi,
How to release the blocked orientation.I have blocked the screen orientation while we press Custom Menu as it was giving some screenshot issues.But i need to unblock the orientation soon the menu gets disappear.How to do that...
i have written
if (Display.getOrientation() == Display.ORIENTATION_PORTRAIT) {
Ui.getUiEngineInstance().setAcceptableDirections(D
} else if (Display.getOrientation() == Display.ORIENTATION_LANDSCAPE) {
Ui.getUiEngineInstance().setAcceptableDirections(D
}
for blocking the screen
HELP