clamp
clamp

Reputation: 34006

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!

Upvotes: 12

Views: 21026

Answers (1)

Cristian
Cristian

Reputation: 200080

setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE);

Upvotes: 26

Related Questions