Вопрос

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