Hi,
I have created a MapActivity that acquires a target from user
selection. This activity declares the following intent filter:
<intent-filter>
<action android:name="com.example.MY_ACTION" />
<category
android:name="android.intent.category.DEFAULT" />
</intent-filter>
A second activity in an other application startActivityForResult :
Intent intent = new Intent("com.example.MY_ACTION");
startActivityForResult(intent, ACTIVITY_MAP);
When startActivityForResult is invoked, "...
ActivityNotFoundException: No Activity found to handle intent
{action="com.example.MY_ACTION"}".
My MapActivity does not require input, but produces a latitude and a
longitude. This activity "apparently" works fine when launched as
main.
Any help would be appreciated !
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google
Groups "Android Beginners" 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-beginners?hl=en
-~----------~----~----~----~------~----~------~--~---