You should never expect to see a message like that, because you can't
receive this broadcast through a receiver declared in the manifest.  You
can only receive it through registerReceiver().  And that means your
process must remain running from the time you call registerReceiver() until
the broadcast is sent.

On Thu, Nov 10, 2011 at 10:02 PM, Namrata <[email protected]> wrote:

>
> There are no messages. Even message like below is not coming which
> means it is not starting broadcast receiver at all.
> I don't see any errors even while app installed/ first time launched.
>
>    Start proc com.xxx.yyy.zzz for broadcast
> com.xxx.yyy.zzz/.MyReceiver:
>
> I need to fix this. any pointers?
>
> On Nov 11, 5:56 am, Dianne Hackborn <[email protected]> wrote:
> > This only works with registerReceiver(), not when declared in the
> manifest.
> >
> > Your filter looks fine, so you should be receiving it.  Try looking in
> the
> > log to make sure there isn't some message being printed there.
> >
> >
> >
> >
> >
> >
> >
> >
> >
> > On Thu, Nov 10, 2011 at 3:52 AM, Namrata <[email protected]>
> wrote:
> > > Hi,
> >
> > > I am trying to listen broadcast for Screen Off as follow
> >
> > > IntentFilter filter = new IntentFilter();
> > > filter.addAction(Intent.ACTION_SCREEN_OFF);
> > > BroadcastReceiver mReceiver = new ScreenReceiver();
> > > registerReceiver(mReceiver, filter);
> >
> > > But when screen locks somehow my ScreenReceiver is not getting a
> > > braodcast. What could be wrong here?
> > > I also tried declaring it in manifest, there too it didn't work.
> >
> > > Thanks in Advance
> >
> > > --
> > > 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
> >
> > --
> > Dianne Hackborn
> > Android framework engineer
> > [email protected]
> >
> > Note: please don't send private questions to me, as I don't have time to
> > provide private support, and so won't reply to such e-mails.  All such
> > questions should be posted on public forums, where I and others can see
> and
> > answer them.
>
> --
> 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
>



-- 
Dianne Hackborn
Android framework engineer
[email protected]

Note: please don't send private questions to me, as I don't have time to
provide private support, and so won't reply to such e-mails.  All such
questions should be posted on public forums, where I and others can see and
answer them.

-- 
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

Reply via email to