首页 > 代码库 > android开发:全屏和退出全屏
android开发:全屏和退出全屏
android开发:全屏和退出全屏
from://http://blog.csdn.net/dyllove98/article/details/8831933
2013-04-21 20:31 413人阅读 评论(0) 收藏 举报
xml代码:
<Button android:id="@+id/button5" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="@string/fullscreen" android:onClick="changescreen"/>
java代码:
private static boolean isfull=true; //全屏设置和退出全屏 private void setFullScreen(){ //requestWindowFeature(Window.FEATURE_NO_TITLE); getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,WindowManager.LayoutParams.FLAG_FULLSCREEN); isfull=true; } private void quitFullScreen(){ final WindowManager.LayoutParams attrs = getWindow().getAttributes(); attrs.flags &= (~WindowManager.LayoutParams.FLAG_FULLSCREEN); getWindow().setAttributes(attrs); getWindow().clearFlags(WindowManager.LayoutParams.FLAG_LAYOUT_NO_LIMITS); //requestWindowFeature(Window.FEATURE_CUSTOM_TITLE); isfull=false; } public void changescreen(View view) { if(isfull==true) { quitFullScreen(); } else { setFullScreen(); } }
附加:开始设置无title,全屏
@Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); // remove title bar this.requestWindowFeature(Window.FEATURE_NO_TITLE); // full screen this.getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,WindowManager.LayoutParams.FLAG_FULLSCREEN); setContentView(R.layout.main); }
android开发:全屏和退出全屏
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。