将数据从小部件发送到活动

时间:2014-10-15 09:17:28

标签: android android-widget

我正在尝试将数据从我的小部件发送到我的活动。 我已经看到了关于小部件方面的几个主题,但我没有成功获取我的活动中的数据。

请参阅Passing data from widget to app

在我的Activity中,我尝试在onStart()方法中执行:

Intent intent = getIntent();
if(intent.getStringExtra("he")!=null)
  LogWrapper.debug(MainActivity.class, "DATA "+intent.getStringExtra("he"));
else
  LogWrapper.debug(MainActivity.class, "DATA null"); 

但是Intent总是为空。

小部件提供商方:

@Override
public void onUpdate(Context context, AppWidgetManager appWidgetManager, int[] appWidgetIds) {
super.onUpdate(context, appWidgetManager, appWidgetIds);
LogWrapper.info(DefibWidgetProvider.class,"in onUpdate!");
final int N = appWidgetIds.length;

// Perform this loop procedure for each App Widget that belongs to this provider
for (int i=0; i<N; i++) {
  int appWidgetId = appWidgetIds[i];

  // Create an Intent to launch MainActivity
  Intent intent = new Intent(context, MainActivity_.class);
  intent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP | Intent.FLAG_ACTIVITY_NEW_TASK);
  intent.putExtra("he","Hello !");
  PendingIntent pendingIntent = PendingIntent.getActivity(context, 0, intent, 0);

  // Get the layout for the App Widget and attach an on-click listener
  // to the button
  RemoteViews views = new RemoteViews(context.getPackageName(), R.layout.widget_defib);
  views.setOnClickPendingIntent(R.id.refreshButton, pendingIntent);

  // Tell the AppWidgetManager to perform an update on the current app widget
  appWidgetManager.updateAppWidget(appWidgetId, views);
}
}

上下文:我的应用包含Google地图。 我的小部件中有2个按钮,当用户单击其中一个按钮时,我想打开主动画并将地图置于特殊的长/纬线上。

你能帮我做这个吗?谢谢

1 个答案:

答案 0 :(得分:3)

根据您建议的链接,您将在onNewIntent方法中获取您的意图数据,

@Override
protected void onNewIntent(Intent intent) {
    // TODO Auto-generated method stub
    super.onNewIntent(intent);
}

从此方法中获取您的意图数据。