现在出现的问题是我在一个Service里面调用了TelephonyManager.listen()方法,但是在stopService的时候,电话监听仍然没有关。
我的 也是 出现了这样的问题 楼主怎么解决的 ???
在service销毁时,要停止监听.....
@Override
public void onDestroy() {
super.onDestroy();
// 停止监听-To unregister a listener, pass the listener object and set the events argument to LISTEN_NONE (0).
tm.listen(listener, PhoneStateListener.LISTEN_NONE);