在棉花糖中,广播不使用Action android.intent.action.proximity_sensor



在棉花糖中,此代码不与GearVr一起使用。Activity.onResume()代码

IntentFilter intentFilter = new IntentFilter("android.intent.action.proximity_sensor"); 
mReceiver = new BroadcastReceiver() { 
@Override 
public void onReceive(Context context, Intent intent) { 
   if(intent.getType().equals("1")) 
   { 
      Log.v(LOGTAG,"headset mounted"); 
   } 
   else 
   { 
      Log.v(LOGTAG,"headset unmounted"); 
   } 
 } 
}; 
 this.registerReceiver(mReceiver, intentFilter); 
}

这用于检测齿轮安装和卸载。它在S6 Lollipop中工作。

可能这是棉花糖6.0.1链接中的错误。有解决这个问题吗?相关链接链接1链接2

请分享任何可以帮助我检测Gearvr Mount并卸载的东西

Android 6.0现在使用Doze模式来最大程度地减少电池的使用。因此,这种打ze模式不允许系统一次又一次地摇摆。我至少应该在两个连续的唤醒之间存在至少9分钟的间隙。请参阅官方文档以获取详细信息。请在此处查看

相关内容

  • 没有找到相关文章

最新更新