1

我有一个活动 A 可用于配置小部件。但也可以直接从启动器启动。保存小部件配置实例时,启动器实例会重新启动。我想知道为什么。

首先,我从启动器开始活动。然后我按下 Home 按钮以停止活动。

现在我单击主屏幕上的一个小部件,小部件配置活动实例启动。我就是这样称呼它的。

Intent intent = new Intent(context, A.class);
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, appWidgetId);

PendingIntent pendingIntent = PendingIntent.getActivity(context, appWidgetId, intent,
PendingIntent.FLAG_UPDATE_CURRENT);

当离开小部件配置活动实例时,例如通过保存按钮单击启动器活动实例重新启动。

public void onClick(View v) {
        settings.save();

        // Signal that saving was performed and widget should be shown
        Intent resultValue = new Intent();
        resultValue.putExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, appWidgetId);
        setResult(RESULT_OK, resultValue);

        BreakWidgetProvider.updateWidgets(new int[] { appWidgetId }, this);

        this.finish();
    }

这些活动应该属于不同的任务。我想知道为什么它们是相关的。

如何防止启动器活动实例重新启动?

4

1 回答 1

0

我解决了。小部件配置活动实例似乎是由启动器启动的活动实例的子代。所以我调整了如下清单。

<activity
    android:name=".BreakMainActivity"            
    android:label="@string/app_name"
    android:launchMode="standard"
    **android:allowTaskReparenting="false"**
    **android:noHistory="true"**            
    android:theme="@android:style/Theme.Light" >
    <intent-filter>
        <action android:name="android.intent.action.MAIN" />
        <action android:name="android.appwidget.action.APPWIDGET_CONFIGURE" />

        <category android:name="android.intent.category.LAUNCHER" />
    </intent-filter>
</activity>

我想 allowTaskReparenting="false" 就足够了。

于 2012-08-21T19:02:15.083 回答