André Charles Legendre wrote:
> I am porting an application to SDK 1.5 and I have problems with Intents .
> In one activity I want to send an intent and I write :
> 
> Intent intent = new Intent(REFRESH_SEARCH_LIST);
> intent.putExtra("searchResults", this.placeMarks);
> PendingIntent.getBroadcast(this.activity, 0, intent, 0);

You probably want sendBroadcast() instead of PendingIntent.getBroadcast().

-- 
Mark Murphy (a Commons Guy)
http://commonsware.com | http://twitter.com/commonsguy

Android App Developer Training: http://commonsware.com/training.html

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to