Android实现横竖屏、全屏的几种方式

1.Android实现横竖屏的方式:

① 在xml文件里面进行设置。一个是在activity的theme里面进行设置横屏、竖屏   另一种:在清单文件的activity节点下进行设置 android:screenOrientation = " 横屏、竖屏"。

②在代码中进行设置:  setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE);


2.设置全屏的方式:

① 在xml文件中进行设置  在activity或者application使用的theme中设置  WindowFullScreen = true;

② 在代码中进行设置   getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,WindowManager.LayoutParams.FLAG_FULLSCREEN);


如果在横竖屏切换的时候,不想让activity关闭并且重新创建,需要在清单文件中的activity节点下设置:android:configChanges="orientation|keyboard"同时需要重载onconfigChanges()方法。


你可能感兴趣的:(Android实现横竖屏、全屏的几种方式)