美文网首页
android锁定横屏

android锁定横屏

作者: 屎倒淋头还嚼便 | 来源:发表于2022-04-09 10:18 被阅读0次

@Override
protected void onResume() {
super.onResume();
/**
* 设置为横屏(或者在fest配置文件的activity标签中:
* android:screenOrientation="landscape")
*/
if(getRequestedOrientation()!= ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE){
setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE);
}
}

相关文章

网友评论

      本文标题:android锁定横屏

      本文链接:https://www.haomeiwen.com/subject/sxcpsrtx.html