Is it possible to directly send a broadcast intent from a PreferenceScreen?
For example, I would like to do something like the following:
<PreferenceScreen android:title="Enable">
<intent android:action="com.otherapp.ENABLE" />
</PreferenceScreen>
But when I try this, the app FC's w/ ActivityNotFoundException.
BTW, the receiver is simply defined as:
<receiver android:name=".Receiver">
<intent-filter>
<action android:name="com.otherapp.ENABLE" />
</intent-filter>
</receiver>
This broadcast receiver has been tested to work ok, but just not from the PreferenceScreen.
TIA!