Reputation: 36656
I have set a broadcast receiver, but it doesn't get the broadcast message i send it:
my manifest
<receiver android:name="BootReceiver" >
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED" />
<action android:name="com.example.manyexampleapp.LocationService.LOCATION_BROAD_MSG" />
</intent-filter>
</receiver>
sending (debug shows I reach the send line)
public class LocationService extends Service {
public static final String LOCATION_BROAD_MSG = "Hello";
private static final int TWO_MINUTES = 1000 * 60 * 2;
public LocationManager locationManager;
public MyLocationListener listener;
public Location previousBestLocation = null;
Intent intent;
int counter = 0;
@Override
public void onCreate() {
super.onCreate();
intent = new Intent(LOCATION_BROAD_MSG);
}
@Override
public void onStart(Intent intent, int startId) {
}
public class MyLocationListener implements LocationListener
{
public void onLocationChanged(final Location loc)
{
intent = new Intent(LOCATION_BROAD_MSG);
Log.i("**************************************", "Location changed");
if(isBetterLocation(loc, previousBestLocation)) {
intent.putExtra("Latitude", loc.getLatitude());
intent.putExtra("Longitude", loc.getLongitude());
intent.putExtra("Provider", loc.getProvider());
sendBroadcast(intent);
}
}
}
receiving (onReceive never reached during debug)
public class BootReceiver extends BroadcastReceiver {
@Override
public void onReceive(Context arg0, Intent intent) {
// TODO Auto-generated method stub
if (intent != null)
{
String action = intent.getAction();
if (action != null)
{
if (action.equalsIgnoreCase(Intent.ACTION_BOOT_COMPLETED))
{
// Log.d("receiver","action is: boot");
}
if (action.equalsIgnoreCase(LocationService.LOCATION_BROAD_MSG))
{
//Toast.makeText(, "wee hee", Toast.LENGTH_LONG);
}
}
}
}
}
Upvotes: 0
Views: 215
Reputation: 11211
The issue is that you are registering the broadcast to receive messages from:
com.example.manyexampleapp.LocationService.LOCATION_BROAD_MSG
and you are sending this:
LOCATION_BROAD_MSG = "Hello"
..
you should have
public static final String LOCATION_BROAD_MSG = "com.example.manyexampleapp.LocationService.LOCATION_BROAD_MSG";
Upvotes: 0
Reputation: 5302
Change this line:
public static final String LOCATION_BROAD_MSG = "com.example.manyexampleapp.LocationService.LOCATION_BROAD_MSG";
You have registered com.example.manyexampleapp.LocationService.LOCATION_BROAD_MSG
as a intent filter in receiver.
Upvotes: 2