横竖屏切换

Posted wang-jingyuan

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了横竖屏切换相关的知识,希望对你有一定的参考价值。

我是参考这篇文章 :https://www.jianshu.com/p/dbc7e81aead2

主要是布局分横竖屏

技术图片

 

然后再java代码 

 Configuration cf = this.getResources().getConfiguration();
        int ori = cf.orientation;
        if (ori == cf.ORIENTATION_LANDSCAPE) {
            setContentView(R.layout.feedback_list);
            setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE);
        } else if (ori == cf.ORIENTATION_PORTRAIT) {
            setContentView(R.layout.feedback_list);
            setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_PORTRAIT);//竖屏
        }

  

以上是关于横竖屏切换的主要内容,如果未能解决你的问题,请参考以下文章

代码切换横竖屏

检测手机横竖屏切换

横竖屏切换

设备旋转---横竖屏切换

android怎么设置横竖屏切换

android开发横竖屏问题