tags:

views:

42

answers:

2

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.

+1  A: 

Hey,

maybe try to specify your intent and put private BroadcastReceiver in your target?

pixel
+1  A: 

Hi,

It is possible to set a specific ComponentName via either a constructor or the setComponent and setClassName methods.

ognian