首页 > 系统 > Android > 正文

Android开发强制横屏和强制竖屏设置实例代码

2019-12-12 03:03:03
字体:
来源:转载
供稿:网友

强制竖屏设置

1.代码在Activity的onResume方法中添加如下代码

  @Override  protected void onResume() {    /**     * 设置为横屏      */    if (getRequestedOrientation() != ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE) {      setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_PORTRAIT);    }    super.onResume();  }

2.在配置文件中对Activity节点添加Android:screenOrientation属性(landscape是横向,portrait是纵向)

android:launchMode="singleTask" android:screenOrientation="portrait">

强制横屏设置

1.代码在Activity的onResume方法中添加如下代码

@Override  protected void onResume() {    /**     * 设置为横屏      */    if (getRequestedOrientation() != ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE) {      setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE);    }    super.onResume();  }

2.在配置文件中对Activity节点添加android:screenOrientation属性(landscape是横向,portrait是纵向)

android:launchMode="singleTask" android:screenOrientation="landscape">

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持武林网。

发表评论 共有0条评论
用户名: 密码:
验证码: 匿名发表