Search code examples
androidandroid-cameraandroid-orientation

Disable Orientation while running the camera


I want to disable the orientation changes from portrait to landscape change while camera and photo gallery running in android. I am searching through the google but there is no use.


Solution

  • setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_PORTRAIT);
    

    or

    <activity
        android:name=".MainActivity"
        android:screenOrientation="portrait" >
    </activity>