当我从手机更改时间时,我无法在ACTION_TIME_CHANGED
课程中收到broadcast receiver
意图。我需要在android.manifest中添加一些特别的内容吗?
我已添加
在广播接收机类中:
else if((intent.getAction().equals(Intent.ACTION_TIME_CHANGED)) ||(intent.getAction().equals(Intent.ACTION_DATE_CHANGED ))){
Log.d("ContactsAppReceiver", "ACTION_TIME_CHANGED");
}
并在manifest.xml文件中。 :
<action android:name="android.intent.action.ACTION_TIME_CHANGED"/>
答案 0 :(得分:2)
添加到清单:
<action android:name="android.intent.action.TIME_SET" />