Ok.
Thanks a lot.
2011/5/9 Mark Murphy
> On Mon, May 9, 2011 at 9:42 AM, Paula Gabriela wrote:
> > Well.. I'm sorry if I misunderstood what you said, but I register my
> > broadcast receive in my app2.
> >
> > In my APP2 I have:
> >
> > //APP2
> > String myAction = ..;
> > IntentFilter filter
On Mon, May 9, 2011 at 9:42 AM, Paula Gabriela wrote:
> Well.. I'm sorry if I misunderstood what you said, but I register my
> broadcast receive in my app2.
>
> In my APP2 I have:
>
> //APP2
> String myAction = ..;
> IntentFilter filter = new IntentFilter();
> filter.addAction(myAction);
> this.re
Well.. I'm sorry if I misunderstood what you said, but I register my
broadcast receive in my app2.
In my APP2 I have:
*//APP2*
String myAction = ..;
IntentFilter filter = new IntentFilter();
filter.addAction(myAction);
this.registerReceiver(receiver, filter); //<--this line right here
where my
On Mon, May 9, 2011 at 9:00 AM, Paula Gabriela wrote:
> Hello everyone,
>
> I have a problem when I try to send a broadcast intent from App1 to App2 and
> set my component name using setComponent() method
>
> That is,
>
> In my APP2 I have
> String myAction = ..;
> IntentFilter filter = new Intent
Hello everyone,
I have a problem when I try to send a broadcast intent from App1 to App2 and
set my component name using *setComponent()* method
That is,
In my APP2 I have
*String myAction = ..;
IntentFilter filter = new IntentFilter();
filter.addAction(myAction);
this.registerReceiver(receiver,
5 matches
Mail list logo