当前位置: 代码迷 >> Android >> Android荧幕横屏竖屏设置技巧
  详细解决方案

Android荧幕横屏竖屏设置技巧

热度:40   发布时间:2016-05-01 15:49:58.0
Android屏幕横屏竖屏设置技巧
Android屏幕横屏竖屏设置技巧
getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN);//设置成全屏模式

setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE););//强制为横屏

setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_PORTRAIT);//竖屏

我做的东西里面还用到了去掉标题栏。
我也贴出来
requestWindowFeature(Window.FEATURE_NO_TITLE);


常用链接。不作为参考。
http://android.tgbus.com/Android/tutorial/Index.shtml
  相关解决方案