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

最佳答案

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);
}

关于android - 方向锁,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/12410023/

10-10 16:48