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.

有帮助吗?

解决方案

setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_PORTRAIT);

or

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

其他提示

Do this on your camera activity

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setRequestedOrientation (ActivityInfo.SCREEN_ORIENTATION_PORTRAIT);
}
许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top