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.     }  

  • 相关阅读:
    剑指offer二十二之从上往下打印二叉树
    剑指offer二十一之栈的压入、弹出序列
    Hadoop简介与伪分布式搭建—DAY01
    getopt解析命令行参数一例:汇集多个服务器的日志
    软件开发:如何表达和维护大型逻辑
    编程语言与可复用性
    危险的 SQL
    谁终将点燃闪电,必长久如云漂泊
    如何使错误日志更加方便排查问题
    生活的诀窍:任务激励式学习法和短小目标法
  • 原文地址:https://www.cnblogs.com/jiezzy/p/2642915.html
Copyright © 2011-2022 走看看