2011-04-13 335 views

回答

0

尝试使用BroadcastReceiver并让它监听ACTION_HEADSET_PLUG意图操作。

0

可以使用this code做到这一点:

Intent intent = registerReceiver(myHandler,new IntentFilter(Intent.ACTION_HEADSET_PLUG)); 
if (intent != null) 
      myHandler.onReceive(this, intent); 

我希望这有助于

相关问题