문제

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