Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

android setting activity orientation by code

it is possible to set the orientation of an activity in the manifest file.

but is it also possible to do it from code? if so, how?

thanks!

like image 676
clamp Avatar asked Nov 25 '10 13:11

clamp


Video Answer


1 Answers

setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE);
like image 179
Cristian Avatar answered Sep 28 '22 04:09

Cristian