So I am in the process of trying to get a few intents to work for me, and am having problems on 2 specific intents. I searched these groups and the webs and can \'t seem
Inside your broadcast receiver onReceive method I am assuming u have a similar setup to the following?
@Override
public void onReceive(Context context, Intent intent){
final String action = intent.getAction();
if (Intent.ACTION_DATE_CHANGED.equals(action) || Intent.ACTION_TIME_CHANGED.equals(action)){
// do stuff here
}
...
}
Another consideration would be did you add the proper filters to your IntentFilter such as...
IntentFilter filter = new IntentFilter();
filter.addAction(Intent.ACTION_TIME_CHANGED);
filter.addAction(Intent.ACTION_DATE_CHANGED);