我被困在一个特定之情况。 我需要让我的小部件,尽快更新为用户更新从应用程序的时间。 我也尝试通过发送thorugh意图Extras中的数据广播,但不这样做。 目前,我有我的AppWidgetProvider中的数据,我需要发送此数据服务
公共类CountdownWidget延伸的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));
}
}
正如你看到的名称一是一个静态变量。 我可以使用getExtras该方法的onReceive接收数据,但我不是无法将此数据传递给我的CountdownService服务。
我曾尝试CountdownWidget.nameOne但仍然未能FET在服务中的数据。
任何帮助将得到高度赞赏。