2011-04-13 158 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); 

我希望這有助於

相關問題