Intent intent = new Intent(getApplicationContext(),LocationReceiver.class);
pendingIntent= PendingIntent.getBroadcast(getApplicationContext(),0,intent,PendingIntent.FLAG_CANCEL_CURRENT);
lmgr.addProximityAlert(lati,longi,radius,-1, pendingIntent);
<receiver android:name=".LocationReceiver"></receiver>
我想在android中监听位置,但待处理的意图无效。我已经尝试过上面的代码&amp;也使用了getService()。但没有运气。请指导我正确的方向。
答案 0 :(得分:0)
您是否宣布了此接收器的intent-filters?确保这一点。并在清单中添加与位置相关的权限。