我有一个soundrecorder Android的线程,我需要知道,如果麦克风/耳机连接或不同时录制,所以我需要使用一个BroadcastReceiver()的thread.how里面我可以注册? this.registerReceiver()不会工作,因为它仅适用于内活动。
如果使用一个线程内broadcasereceivers是不是一个好主意,所以什么解决办法吗?
这里是将一个线程内的活动,并不会工作,在里面工作的代码:
headsetReceiver = new BroadcastReceiver() {
@Override
public void onReceive(Context context, Intent intent) {
String action = intent.getAction();
Log.i("Broadcast Receiver", action);
if ((action.compareTo(Intent.ACTION_HEADSET_PLUG)) == 0) // if
// the
// action
// match
// a
// headset
// one
{
int headSetState = intent.getIntExtra("state", 0); // get
// the
// headset
// state
// property
int hasMicrophone = intent.getIntExtra("microphone", 0);// get
// the
// headset
// microphone
// property
if ((headSetState == 0) && (hasMicrophone == 0)) // headset
// was
// unplugged
// &
// has
// no
// microphone
{
// do whatever
}
}
}
};
this.registerReceiver(headsetReceiver, new IntentFilter(
Intent.ACTION_HEADSET_PLUG));