enable screen rotation android

android, java, orientation, rotation

Solution

You can use this

setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_SENSOR);

See the official documentation for more details

Problem

I have disabled screen rotation in one activity in particular time. Now I need that particular time it will be enabled. How can I enable rotation, when i disabled it using this: ?

Original source