从广播接收器通知片段或 activity
Notice fragment or activity from broadcast receiver
我需要广播接收器通知 fragment/activity,但我找不到解决方案。
描述:当片段启动时,我的方法检查 GPS 模块是否打开,如果没有要求用户打开它。现在我有 gps 的广播接收器,gps 何时打开或关闭我收到消息,这有效。但是现在我需要做一些类似接口的事情,当我收到 GPS on/off 时,我想在片段中调用我的方法。我不确定我是否清楚我需要什么。在这里我尝试使用接口,但后来我发现我无法将接口对象传递给广播接收器构造函数。
我的解决方案有界面但不起作用:
public class GpsLocationReceiver extends BroadcastReceiver {
private INotifyGpsTurnedOn iNotifyGpsTurnedOn = null;
public GpsLocationReceiver(INotifyGpsTurnedOn iNotifyGpsTurnedOn) {
this.iNotifyGpsTurnedOn = iNotifyGpsTurnedOn;
}
@Override
public void onReceive(Context context, Intent intent) {
LocationManager lm = (LocationManager) context.getSystemService(Service.LOCATION_SERVICE);
boolean isEnabled = lm.isProviderEnabled(LocationManager.GPS_PROVIDER);
Toast.makeText(context, isEnabled+"",
Toast.LENGTH_SHORT).show();
if(isEnabled){
iNotifyGpsTurnedOn.iniGps();
}
else{
iNotifyGpsTurnedOn.askTurnOnGps();
}
}
public interface INotifyGpsTurnedOn {
public void iniGps();
public void askTurnOnGps();
}
}
在片段 class 中,我实现了方法接口、注册接收器等...
GpsLocationReceiver m_gpsChangeReceiver = new GpsLocationReceiver(this);
getActivity().registerReceiver(m_gpsChangeReceiver, new IntentFilter(LocationManager.PROVIDERS_CHANGED_ACTION));
@Override
public void iniGps() {
mGps.startGps(false);
}
@Override
public void askTurnOnGps() {
mGps.askUserToTurnOnGPS(getActivity());
}
这很好用。您可以声明一个 Interface
并在构造函数中提供它。只要您自己实例化 BroadcastReceiver
并且不要让 Android 执行此操作,它就可以工作。您不需要在清单中声明此 BroadcastReceiver
。
您获得 Exception: Unable to instantiate receiver no empty constructor.
的原因是因为 Android 正在尝试实例化 BroadcastReceiver
。 (无论出于何种原因)。
我需要广播接收器通知 fragment/activity,但我找不到解决方案。
描述:当片段启动时,我的方法检查 GPS 模块是否打开,如果没有要求用户打开它。现在我有 gps 的广播接收器,gps 何时打开或关闭我收到消息,这有效。但是现在我需要做一些类似接口的事情,当我收到 GPS on/off 时,我想在片段中调用我的方法。我不确定我是否清楚我需要什么。在这里我尝试使用接口,但后来我发现我无法将接口对象传递给广播接收器构造函数。
我的解决方案有界面但不起作用:
public class GpsLocationReceiver extends BroadcastReceiver {
private INotifyGpsTurnedOn iNotifyGpsTurnedOn = null;
public GpsLocationReceiver(INotifyGpsTurnedOn iNotifyGpsTurnedOn) {
this.iNotifyGpsTurnedOn = iNotifyGpsTurnedOn;
}
@Override
public void onReceive(Context context, Intent intent) {
LocationManager lm = (LocationManager) context.getSystemService(Service.LOCATION_SERVICE);
boolean isEnabled = lm.isProviderEnabled(LocationManager.GPS_PROVIDER);
Toast.makeText(context, isEnabled+"",
Toast.LENGTH_SHORT).show();
if(isEnabled){
iNotifyGpsTurnedOn.iniGps();
}
else{
iNotifyGpsTurnedOn.askTurnOnGps();
}
}
public interface INotifyGpsTurnedOn {
public void iniGps();
public void askTurnOnGps();
}
}
在片段 class 中,我实现了方法接口、注册接收器等...
GpsLocationReceiver m_gpsChangeReceiver = new GpsLocationReceiver(this);
getActivity().registerReceiver(m_gpsChangeReceiver, new IntentFilter(LocationManager.PROVIDERS_CHANGED_ACTION));
@Override
public void iniGps() {
mGps.startGps(false);
}
@Override
public void askTurnOnGps() {
mGps.askUserToTurnOnGPS(getActivity());
}
这很好用。您可以声明一个 Interface
并在构造函数中提供它。只要您自己实例化 BroadcastReceiver
并且不要让 Android 执行此操作,它就可以工作。您不需要在清单中声明此 BroadcastReceiver
。
您获得 Exception: Unable to instantiate receiver no empty constructor.
的原因是因为 Android 正在尝试实例化 BroadcastReceiver
。 (无论出于何种原因)。