Hi,

I am making a widget that needs a broadcast receiver, like the one in
com.example.android.apis.appwidget.ExampleBroadcastReceiver.  However,
the example defines Intent.ACTION_TIMEZONE_CHANGED in the manifest,
but there are some that do not allow this

For example, Intent.ACTION_TIME_TICK says "You can not receive this
through components declared in manifests, only by exlicitly
registering for it with Context.registerReceiver(). "

So I removed the manifest declarations and tried replacing the
AppWidgetProvider.onEnabled function that was in the example with a
call like the following:
context.registerReceiver(myReceiver, new IntentFilter(Intent.ACTION_TIME_TICK));

(where "myReceiver" is an instance of the receiver I want.)  However,
when I try to run the code, I get the following error:

Unable to start
receiver...android.content.ReceiverCallNotAllowedException:
IntentReceiver components are not allowed to register to receive
intents

Can anyone suggest a way to get this broadcast receiver working from a widget?

Thanks,
Henry

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to