In Android, is it possible to unicast an Intent
to an Activity
? The only options I see for sending intents is either to start an activity or issue a broadcast, but I only want a specific target to receive my Intent.
views:
42answers:
2
+1
A:
Hey,
maybe try to
specify your intent and put private BroadcastReceiver
in your target?
pixel
2010-07-20 18:58:50
+1
A:
Hi,
It is possible to set a specific ComponentName via either a constructor or the setComponent and setClassName methods.
ognian
2010-07-20 19:15:55