gpt4 book ai didi

Android广播接收器未注册报错

转载 作者:行者123 更新时间:2023-11-29 00:03:43 25 4
gpt4 key购买 nike

我使用 Intent 打开位置设置菜单以在我的 Activity 中启用 gps。调用 Intent 后我使用服务来收听位置更新。我发送了两个 BroadcastReceivers 从 Service 到 Activity。在 Activity 的 onResume() 方法中,我想访问从 Service 传递的数据。但是当我单击后退按钮时,应用程序崩溃了。它说 BroadcastReceiver 尚未注册。但是我已经注册了两个 BroadcastReceivers

错误:

java.lang.RuntimeException: Unable to destroy activity {com.example.jobinsabu.ohxee/com.example.jobinsabu.ohxee.AddOffers.AddOffers}: java.lang.IllegalArgumentException: Receiver not registered: com.example.jobinsabu.ohxee.AddOffers.AddOffers$7@8cd71b4 at android.app.ActivityThread.performDestroyActivity(ActivityThread.java:4137) at android.app.ActivityThread.handleDestroyActivity(ActivityThread.java:4155) at android.app.ActivityThread.access$1500(ActivityThread.java:177) at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1484) at android.os.Handler.dispatchMessage(Handler.java:102) at android.os.Looper.loop(Looper.java:135) at android.app.ActivityThread.main(ActivityThread.java:5910) at java.lang.reflect.Method.invoke(Native Method) at java.lang.reflect.Method.invoke(Method.java:372) at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:1405) at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:1200) Caused by: java.lang.IllegalArgumentException: Receiver not registered: com.example.jobinsabu.ohxee.AddOffers.AddOffers$7@8cd71b4 at android.app.LoadedApk.forgetReceiverDispatcher(LoadedApk.java:830) at android.app.ContextImpl.unregisterReceiver(ContextImpl.java:1850) at android.content.ContextWrapper.unregisterReceiver(ContextWrapper.java:518) at com.example.jobinsabu.ohxee.AddOffers.AddOffers.onDestroy(AddOffers.java:448) at android.app.Activity.performDestroy(Activity.java:6418) at android.app.Instrumentation.callActivityOnDestroy(Instrumentation.java:1153) at android.app.ActivityThread.performDestroyActivity(ActivityThread.java:4124) at android.app.ActivityThread.handleDestroyActivity(ActivityThread.java:4155)  at android.app.ActivityThread.access$1500(ActivityThread.java:177)  at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1484)  at android.os.Handler.dispatchMessage(Handler.java:102)  at android.os.Looper.loop(Looper.java:135)  at android.app.ActivityThread.main(ActivityThread.java:5910)  at java.lang.reflect.Method.invoke(Native Method)  at java.lang.reflect.Method.invoke(Method.java:372)  at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:1405)  at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:1200) 

代码:

StatsGpsService.java

public class StatsGpsService extends Service {
LocationListener locationListener;
LocationManager locationManager;
boolean flag1;

public StatsGpsService() {
super();

}

@Override
public void onCreate() {
super.onCreate();
Log.e("Service","Created");


}

@Override
public int onStartCommand(Intent intent, int flags, int startId) {

handleLocation(intent);
return super.onStartCommand(intent, flags, startId);
}

@Override
public void onDestroy() {
super.onDestroy();
Log.e("Service","Destroyed");
}

@Nullable
@Override
public IBinder onBind(Intent intent) {
return null;
}

public void handleLocation(Intent intent){
if(intent!= null) {
flag1 = intent.getBooleanExtra("offr_act_ind", false);

locationListener = new LocationListener() {
@Override
public void onLocationChanged(Location location) {
if (flag1 == true) {

Intent intent = new Intent("loc_updts");
intent.putExtra("stat_lat", location.getLatitude());
intent.putExtra("stat_longt", location.getLongitude());
sendBroadcast(intent);
}
}

@Override
public void onStatusChanged(String s, int i, Bundle bundle) {

}

@Override
public void onProviderEnabled(String s) {

}

@Override
public void onProviderDisabled(String s) {
Log.e("Provider","Disabled");
Intent intent1=new Intent("offr_prvdr_disable");
intent1.putExtra("offr_provider_disable",true);
sendBroadcast(intent1);

}
};
locationManager = (LocationManager) getSystemService(Context.LOCATION_SERVICE);


if (ActivityCompat.checkSelfPermission(this, Manifest.permission.ACCESS_FINE_LOCATION) != PackageManager.PERMISSION_GRANTED && ActivityCompat.checkSelfPermission(this, Manifest.permission.ACCESS_COARSE_LOCATION) != PackageManager.PERMISSION_GRANTED) {
// TODO: Consider calling
// ActivityCompat#requestPermissions
// here to request the missing permissions, and then overriding
// public void onRequestPermissionsResult(int requestCode, String[] permissions,
// int[] grantResults)
// to handle the case where the user grants the permission. See the documentation
// for ActivityCompat#requestPermissions for more details.
return;
}

locationManager.requestLocationUpdates(LocationManager.GPS_PROVIDER, 5000, 10, locationListener);
}
}
}

AddOffers.java:

 @Override
protected void onResume() {
super.onResume();
broadcastReceiver1 =new BroadcastReceiver() {
@Override
public void onReceive(Context context, Intent intent) {
if(intent!=null){
if(intent.getBooleanExtra("offr_provider_disable",false)==true){
offer_gps=false;
Log.e("gps","disabled");
}
}
}
};
this.registerReceiver(broadcastReceiver1,new IntentFilter("offr_prvdr_disable"));

broadcastReceiver=new BroadcastReceiver() {
@Override
public void onReceive(Context context, Intent intent) {
if(intent!=null){
lat=Double.toString(intent.getDoubleExtra("stat_lat",0.0));
longt=Double.toString(intent.getDoubleExtra("stat_longt",0.0));
offer_lat_txt.setText(lat);
offr_long_inpt.setText(longt);
}
}
};
this.registerReceiver(broadcastReceiver,new IntentFilter("loc_updts"));

}

@Override
protected void onStop() {
super.onStop();
if(static_gps_intent!=null){

stopService(static_gps_intent);

}
if(broadcastReceiver1!=null){
unregisterReceiver(broadcastReceiver1);
}
if(broadcastReceiver!=null){
unregisterReceiver(broadcastReceiver);
}
}

@Override
protected void onDestroy() {
super.onDestroy();
if(broadcastReceiver1!=null){
unregisterReceiver(broadcastReceiver1);
}
if(broadcastReceiver!=null){
unregisterReceiver(broadcastReceiver);
}
if(static_gps_intent!=null){

stopService(static_gps_intent);

}
}

最佳答案

那是因为 - 您正在注销 broadcastreceiver both 方法中的 s onStop()onDestroy() .

您必须一次注销接收器。尝试从 onStop() 中删除注销代码方法。

关于Android广播接收器未注册报错,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42671318/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com