1

如何防止我的应用程序表单旋转。我想要它,所以如果用户处于纵向模式,则应用程序将始终处于纵向模式,如果他们以横向启动应用程序,则应用程序将始终处于横向模式(直到应用程序关闭并重新启动)

4

1 回答 1

4
public static void lockOrientation(Activity a) {
    if (a.getResources().getConfiguration().orientation == Configuration.ORIENTATION_PORTRAIT) {
        a.setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_PORTRAIT);
    } else {
        a.setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE);
    }
}

public static void unlockOrientation(Activity a) {
    a.setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED);
}
于 2012-09-13T15:43:54.233 回答