zoukankan      html  css  js  c++  java
  • android 判断屏幕是否关闭

    public void onCreate(Bundle savedInstanceState) {

     final IntentFilter filter = new IntentFilter();  
            filter.addAction(Intent.ACTION_SCREEN_OFF);  
            filter.addAction(Intent.ACTION_SCREEN_ON);  
            registerReceiver(mBatInfoReceiver, filter);  

        } 

     private final BroadcastReceiver mBatInfoReceiver = new BroadcastReceiver() {  
            @Override  
            public void onReceive(final Context context, final Intent intent) {  
                final String action = intent.getAction();  
               if(Intent.ACTION_SCREEN_ON.equals(action)){  
                    Log.d(TAG, "-----------------screen is on...");  
               }else if(Intent.ACTION_SCREEN_OFF.equals(action)){  
                    Log.d(TAG, "----------------- screen is off...");  
       
               }  
            }  

        }; 

  • 相关阅读:
    python
    VSCompile
    Oracle学习
    CMD
    JQuery 学习
    单词
    解决Manjaro+win双系统相差8小时
    编辑器使用
    软件安装
    磁盘分区与逻辑卷管理
  • 原文地址:https://www.cnblogs.com/likwo/p/2563673.html
Copyright © 2011-2022 走看看