"Unable to start activity ... no activity found to handle intent
{ action: com.google.android.radar.SHOW_RADAR (has extras) } "You see I am trying to embed the radar functionality in my map application. Since I only need to show a radar that has only one destination point it's not worth writing a whole other radar program. I was thinking to use intent and take from from another open source app like this: http://code.google.com/p/apps-for-android/source/browse/#svn/trunk/Radar is this possible? thanks, PS: I didn't copy the source code to my files. On Jun 7, 12:08 pm, Marco Nelissen <[email protected]> wrote: > On Sun, Jun 7, 2009 at 8:28 AM, Georgy <[email protected]> wrote: > > > How can use intents in the following: > > > I want to use the RADAR function in the package: > > com.google.android.radar.SHOW_RADAR > > > I got that I need to input the following: > > > Intent i = new Intent("com.google.android.radar.SHOW_RADAR"); > > i.putExtra("latitude", 37.422f); > > i.putExtra("longitude", -122.084f); > > startActivity(i); > > > but that throws and exception error.... is there anything I need to > > know more? > > What's the exception? --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---

