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...");  
       
               }  
            }  

        }; 

  • 相关阅读:
    2017年9月22日 关于JS数组
    2017年9月20日
    2017年9月19日 JavaScript语法操作
    2017年9月18日
    2017年9月17日 JavaScript简介
    2017年9月16日
    2017年9月15日
    2017年9月14日
    2017年9月12日
    贪吃蛇全文
  • 原文地址:https://www.cnblogs.com/likwo/p/2563673.html
Copyright © 2011-2022 走看看