Android BroadcastReceiver无法触发

时间:2019-02-15 23:07:28

标签: android broadcastreceiver

此代码过去在较旧的android版本上正常运行。当我使用最新的Android Studio更新它时,它不再起作用。

我正在尝试将一个简单的字符串从我的一个班级发送到主要活动。

我在清单中声明了接收者...

<receiver android:name="com.domain.appname.MainActivity$MyReceiver">
<intent-filter>
<action android:name="MY_ACTION"/>
</intent-filter>
</receiver>

尝试使用意图发送广播时。这是检测到位置更改的时候

private class LocationListener implements android.location.LocationListener
{
    Location mLastLocation;

    public LocationListener(String provider)
    {
        mLastLocation = new Location(provider);
    }

    @Override
    public void onLocationChanged(Location location)
    {
        addStats("onLocationChanged - "+mLastLocation.getLatitude()+" "+mLastLocation.getLongitude()+" "+mLastLocation.getAccuracy()+" "+mLastLocation.getSpeed());
        mLastLocation.set(location);
        //send latitude, longitude and accuracy as broadcast to main activity
        Intent intent = new Intent();
        intent.setAction(MY_ACTION);
        intent.putExtra("DATAPASSED", mLastLocation.getLatitude()+" "+mLastLocation.getLongitude()+" "+mLastLocation.getAccuracy()+" "+mLastLocation.getSpeed());
        sendBroadcast(intent);
        addStats("after sendBroadcast");
    }

    @Override
    public void onProviderDisabled(String provider){}

    @Override
    public void onProviderEnabled(String provider){}

    @Override
    public void onStatusChanged(String provider, int status, Bundle extras){}
}

其中的addStats行仅用于调试,它们均会触发。即,我看到它检测到新的长/短的统计信息,并且收到“ after sendBroadcast”消息,因此看起来该代码正在发送(或尝试发送)广播。

现在在我的主要活动中,我以此作为接收者...

//receives the broadcasts from the MyLocationService service
public static class MyReceiver extends BroadcastReceiver{
    @Override
    public void onReceive(Context arg0, Intent arg1) {
        addStats("inside onReceive");
        String datapassed = arg1.getStringExtra("DATAPASSED");
    }
}

那永远不会触发。我从没看到“ inside onReceive”消息。

有什么主意我可能会缺少的东西吗?经过大量的stackoverflow和google结果,以上似乎是我需要使它工作的原因。正如我所说的那样,它过去运行正常(也许是Android的26版本),但我正在尝试使该应用程序在更新的OS版本上运行。

1 个答案:

答案 0 :(得分:1)

您可能需要使用明确的意图。参见https://stackoverflow.com/a/49197540/383676

但是,如果您要在同一个应用中进行广播,则更好的选择是使用: https://developer.android.com/reference/android/support/v4/content/LocalBroadcastManager#sendBroadcast(android.content.Intent)