I'm trying to receive some data in my BroadcastReceiver which is called by a ListActivity. It is called, I've tested it, but getExtras always returns NULL.
This is the interesting part of my ListActivity:
public boolean onContextItemSelected(MenuItem item) {
Intent distIntent = new Intent();
distIntent.setAction(Intent.ACTION_SEND);
distIntent.putExtra("fileName", new File("Test").getName());
sendBroadcast(distIntent);
}
This is the corresponding part of my BroadcastReceiver:
public void onReceive(Context c, Intent intent){
String b = intent.getStringExtra("fileName");
if(b != null)
Log.e(logTag, "File Name: "+b);
}
The file exists, its name is added properly to the intent, but for some reason it's not propagated to my receiver.
Any advice appreciated!