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

方式一:

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

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

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

方式二:

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

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

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

你可能感兴趣的:(Android,笔记)