私は特定のシナリオで立ち往生しています。ユーザーがアプリから時刻を更新したらすぐにウィジェットを更新する必要があります。Intent Extrasを介してデータを送信してブロードキャストを試しましたが、失敗しました。現在、データを入力しており、AppWidgetProvider
このデータをサービスに送信する必要があります
public class CountdownWidget extends AppWidgetProvider {
// SharedPreferences userDefaults;
// update rate in milliseconds
public static final int UPDATE_RATE = 1800000; // 30 minute
public static String nameOne = "";
@Override
public void onDeleted(Context context, int[] appWidgetIds) {
for (int appWidgetId : appWidgetIds) {
setAlarm(context, appWidgetId, -1);
}
super.onDeleted(context, appWidgetIds);
}
@Override
public void onReceive(Context context, Intent intent) {
// TODO Auto-generated method stub
Bundle extras = intent.getExtras();
nameOne = extras.getString("NAME_ONE");
Log.e("Name: ", nameOne);
super.onReceive(context, intent);
}
@Override
public void onUpdate(Context context, AppWidgetManager appWidgetManager,
int[] appWidgetIds) {
for (int appWidgetId : appWidgetIds) {
setAlarm(context, appWidgetId, UPDATE_RATE);
}
super.onUpdate(context, appWidgetManager, appWidgetIds);
}
public static void setAlarm(Context context, int appWidgetId, int updateRate) {
// Log.e("", "Updating Widget Service");
PendingIntent newPending = makeControlPendingIntent(context,
CountdownService.UPDATE, appWidgetId);
AlarmManager alarms = (AlarmManager) context
.getSystemService(Context.ALARM_SERVICE);
if (updateRate >= 0) {
alarms.setRepeating(AlarmManager.ELAPSED_REALTIME,
SystemClock.elapsedRealtime(), updateRate, newPending);
} else {
// on a negative updateRate stop the refreshing
alarms.cancel(newPending);
}
}
public static PendingIntent makeControlPendingIntent(Context context,
String command, int appWidgetId) {
Intent active = new Intent(context, CountdownService.class);
active.setAction(command);
active.putExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, appWidgetId);
// this Uri data is to make the PendingIntent unique, so it wont be
// updated by FLAG_UPDATE_CURRENT
// so if there are multiple widget instances they wont override each
// other
Uri data = Uri.withAppendedPath(
Uri.parse("countdownwidget://widget/id/#" + command
+ appWidgetId), String.valueOf(appWidgetId));
active.setData(data);
return (PendingIntent.getService(context, 0, active,
PendingIntent.FLAG_UPDATE_CURRENT));
}
}
ご覧のとおりnameOne
、静的変数です。onReceive
getExtrasを使用してメソッドに関するデータを受信できますが、このデータをCountdownService
サービスに渡すことができません。
私は試しCountdownWidget.nameOne
ましたが、それでもサービス内のデータを取得できませんでした。
どんな助けでも大歓迎です。