Android横屏预竖屏

来源:互联网 发布:惠州网络 问政平台官网 编辑:程序博客网 时间:2024/06/06 04:01





<1>Android设定屏幕只竖屏或只横屏的两种方式

方式一:

在AndroidMainfest.XML中的activity属性设定中

加入android:screenOrientation="portrait",屏幕设定为竖屏

加入android:screenOrientation="landscape",屏幕设定为横屏

方式二:

在onCreate方法中,super.onCreate(savedInstanceState);后

setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_PORTRAIT); 设定为竖屏

setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE); 设定为横屏

0 0