zoukankan      html  css  js  c++  java
  • android动态全屏切换

      1. import android.app.Activity;  
      2. import android.os.Bundle;  
      3. import android.view.View;  
      4. import android.view.View.OnClickListener;  
      5. import android.view.WindowManager;  
      6. import android.widget.Button;  
      7.   
      8. public class FullScreenTestActivity extends Activity {  
      9.     private Button button;  
      10.   
      11.   
      12.     private boolean isFulllScreen;  
      13.   
      14.   
      15.     /** Called when the activity is first created. */  
      16.     @Override  
      17.     public void onCreate(Bundle savedInstanceState) {  
      18.         super.onCreate(savedInstanceState);  
      19.         setContentView(R.layout.main);  
      20.   
      21.   
      22.         button = (Button) findViewById(R.id.button);  
      23.         button.setOnClickListener(new OnClickListener() {  
      24.   
      25.   
      26.             @Override  
      27.             public void onClick(View v) {  
      28.                 isFulllScreen = !isFulllScreen;  
      29.                 if (isFulllScreen) {  
      30.                     button.setText("exit_full_screen");  
      31.                     WindowManager.LayoutParams params = getWindow().getAttributes();  
      32.                     params.flags |= WindowManager.LayoutParams.FLAG_FULLSCREEN;  
      33.                     getWindow().setAttributes(params);  
      34.                     getWindow().addFlags(WindowManager.LayoutParams.FLAG_LAYOUT_NO_LIMITS);  
      35.                 } else {  
      36.                     button.setText("full_screen");  
      37.                     WindowManager.LayoutParams params = getWindow().getAttributes();  
      38.                     params.flags &= (~WindowManager.LayoutParams.FLAG_FULLSCREEN);  
      39.                     getWindow().setAttributes(params);  
      40.                     getWindow().clearFlags(WindowManager.LayoutParams.FLAG_LAYOUT_NO_LIMITS);  
      41.                 }  
      42.             }  
      43.         });  
      44.     }  

  • 相关阅读:
    编码问题
    apache 2.4 httpd 2.4.6 反向代理后端的服务为HTTPS https 基于centos7
    ucore系统 eclipse-cdt实验环境准备
    openshift v1.5 不能登录system:admin 问题
    filebeat v6.3 如何增加ip 字段
    filebeat v6.3 多行合并的步骤 多个表达式同时匹配
    如何一步步使用国内yum源一键安装openstack-ocata版本基于centos7
    windows 定时删除N天前日志脚本
    logrotate 如何执行日志按照大小切分
    virtualbox 基于nat模式搭建局域网并且和宿主机通信
  • 原文地址:https://www.cnblogs.com/jiezzy/p/2642915.html
Copyright © 2011-2022 走看看