嗨我正在使用广播接收器进行位置监听,但是这个广播接收器只在活动处于前景时工作,否则当我不使用此应用程序时接收器不活动 这里是onCreate方法的活动代码,我正在注册我的广播接收器
PendingIntent proximityIntent = PendingIntent.getBroadcast(getApplicationContext(), i, intent, PendingIntent.FLAG_UPDATE_CURRENT);
locationManager.addProximityAlert(
latitude, // the latitude of the central point of the alert region
longitude, // the longitude of the central point of the alert region
1000, // the radius of the central point of the alert region, in meters
-1, // time for this proximity alert, in milliseconds, or -1 to indicate no expiration
proximityIntent // will be used to generate an Intent to fire when entry to or exit from the alert region is detected
);
IntentFilter filter = new IntentFilter(PROX_ALERT_INTENT+s);
registerReceiver(new ProximityAlertReceiver(), filter);
和BroadcastReceiver的代码是
public class ProximityAlertReceiver extends BroadcastReceiver {
private static final int NOTIFICATION_ID = 1000;
public static final String PREFS_NAME = "MyPrefsFile";
@Override
public void onReceive(Context context, Intent intent) {
String key = LocationManager.KEY_PROXIMITY_ENTERING;
SharedPreferences shared=context.getSharedPreferences(MainActivity.PREFS_NAME,0);
Boolean entering = intent.getBooleanExtra(key, false);
Double longitude=intent.getDoubleExtra("longitude", 0.0);
Double latitude=intent.getDoubleExtra("latitude",0.0);
Intent in = new Intent(context,AlarmActivity.class);
in.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
in.putExtra("longitude", longitude);
in.putExtra("latitude", latitude);
Log.i("cont1", shared.getInt("count", 0)+"");
in.putExtra("count",shared.getInt("count", 0));
context.startActivity(in);
}
}
我读了一些注册的地方,并分别在onResume和onPause方法中取消注册,但是当我在onPause方法中注销它然后它取消注册意味着它将无法工作我希望我的广播接收器一直工作。请你建议如何做到这一点。
答案 0 :(得分:4)
如果你想在后台工作,那么你需要在广播接收器类的清单文件中添加广播接收器。
喜欢这个教程http://www.vogella.com/articles/AndroidBroadcastReceiver/article.html
您可以使用自己的“MyReceiver”。
在这种情况下,您不需要注册和取消注册。这将自动生效。
答案 1 :(得分:1)
如果您希望广播接收器一直运行,您需要从清单文件中注册它。 来自文件: 您可以使用Context.registerReceiver()动态注册此类的实例,也可以通过AndroidManifest.xml中的标记静态发布实现。
http://developer.android.com/reference/android/content/BroadcastReceiver.html
答案 2 :(得分:0)
首先定义的是mainfest,所以app也没有运行它们 广播接收器工作..所以你可以处理这种类型的广播 如果启用或禁用,则使用PackageManager并获取包名称 你可以检查并运行你的brodcast
答案 3 :(得分:0)
我认为服务类会帮助你,尝试在无限时间的背景下实现....当你的服务发现某些东西被改变然后它会发送一些广播。对你:)