android 屏幕全屏、 横竖

全屏在onreate中或者在清单文件设置

requestWindowFeature(Window.FEATURE_NO_TITLE);//去掉标题栏
        getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN);
        setContentView(R.layout.);

        /**
         * 1、在AndroidManifest.xml的配置文件里面的<activity>标签添加属性:

         android:theme="@android:style/Theme.NoTitleBar.Fullscreen"

         2、在Activity的onCreate()方法中的super()和setContentView()两个方法之间加入下面两条语句:

         this.requestWindowFeature(Window.FEATURE_NO_TITLE);//去掉标题栏

         this.getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN);//去掉信息栏
         */

横竖屏切换

        /**
         * manifest中为相应的Activity设置android:configChanges属性,activity不重启
         android:configChanges="orientation|keyboardHidden"
         android:configChanges="orientation"
         */
         /**
         * 假如布局资源是不一样又不按照如上设置,则需要通过java代码来判断当前是横屏还是竖屏
         * 然后来加载相应的xml布局文件(比如mainP为竖屏mainL为横屏)。
         * 因为当屏幕变为横屏的时候,系统会重新呼叫当前Activity的onCreate方法,
         * 你可以把以下方法放在你的onCreate中来检查当前的方向,
         * 然后可以让你的setContentView来载入不同的layout xml。
         */
        int mCurrentOrientation = getResources().getConfiguration().orientation;
        if (mCurrentOrientation == Configuration.ORIENTATION_PORTRAIT) {
            // If current screen is portrait
            L.i("info", "portrait"); // 竖屏

        } else if (mCurrentOrientation == Configuration.ORIENTATION_LANDSCAPE) {
            //If current screen is landscape
            L.i("info", "landscape"); // 横屏
        }
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值