カレンダーウィジェットを開発していますが、手動で日付を変更したときにDATE_CHANGEDメッセージを受信できません。
何が問題ですか?
マニフェストの私のコードは:
<receiver android:name="com.widget.calendar.CalendarWidgetProvider">
<intent-filter>
<action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
<action android:name="android.intent.action.DATE_CHANGED"/>
</intent-filter>
<!-- This specifies the widget provider info -->
<meta-data android:name="android.appwidget.provider"
android:resource="@xml/widgetinfo" />
</receiver>
そして、私はそれを次のように受け取ろうとしました:
@Override
public void onReceive(Context ctx, Intent intent) {
final String action = intent.getAction();
if (action.equalsIgnoreCase("android.intent.action.DATE_CHANGED")) {
Log.e(TAG, "Date changed.....!!!!!!!!!!!!!!!!!!!!!!!!!!!!!");
}
super.onReceive(ctx, intent);
}
しかし、システムの日付を手動で変更すると、ログが印刷されません。
ありがとう!
アップデート:
これはIntent.ACTION_TIME_CHANGEDで解決しました。これは、実際にはDATE_CHANGEDのバグです。