在阅读有关Widgets的Android文档时,我偶然发现了这段代码,其目的是启动一个服务来检索StackView项目的工厂。
// Set up the intent that starts the StackViewService, which will
// provide the views for this collection.
Intent intent = new Intent(context, StackWidgetService.class);
// Add the app widget ID to the intent extras.
intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, appWidgetIds[i]);
intent.setData(Uri.parse(intent.toUri(Intent.URI_INTENT_SCHEME)));
// Instantiate the RemoteViews object for the App Widget layout.
RemoteViews rv = new RemoteViews(context.getPackageName(), R.layout.widget_layout);
// Set up the RemoteViews object to use a RemoteViews adapter.
// This adapter connects
// to a RemoteViewsService through the specified intent.
// This is how you populate the data.
rv.setRemoteAdapter(appWidgetIds[i], R.id.stack_view, intent);
你可以找到它here
我有一个问题,理解你为什么需要打电话
intent.setData(Uri.parse(intent.toUri(Intent.URI_INTENT_SCHEME)));
我知道它为URI提供了一个前缀 intent:// ,但是这里有必要吗?
答案 0 :(得分:0)
很简单。
简要说明:如果不使用:如果不使用setData,它将为小部件的所有实例显示相同的ID。