gpt4 book ai didi

android - 方向锁定

转载 作者:行者123 更新时间:2023-11-29 16:11:56 24 4
gpt4 key购买 nike

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

最佳答案

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/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com