嗨,我正在为Android应用程序开发快捷方式。我的代码看起来像
private void setShortMenu() {
ArrayList<ShortcutInfo> shortcutInfos = new ArrayList<>();
Intent intent = new Intent(this, SampleActivity2.class);
intent.setAction(Intent.ACTION_VIEW);
intent.putExtra("val",1);
intent.addCategory("android.shortcut.conversation");
ShortcutManager shortcutManager = getSystemService(ShortcutManager.class);
ShortcutInfo shortcut = new ShortcutInfo.Builder(this, "id2")
.setShortLabel("Web site")
.setLongLabel("Open the web site")
.setIcon(Icon.createWithResource(this, R.mipmap.ic_launcher))
.setIntent(intent)
.build();
shortcutInfos.add(shortcut);
Intent intent2 = new Intent(this, SampleActivity3.class);
intent2.setAction(Intent.ACTION_VIEW);
intent.addCategory("android.shortcut.conversation");
intent.putExtra("val",2);
ShortcutInfo shortcut2 = new ShortcutInfo.Builder(this, "id1")
.setShortLabel("Web site...")
.setLongLabel("Open the web site...")
.setIcon(Icon.createWithResource(this, R.mipmap.ic_launcher))
.setIntent(intent2)
.build();
shortcutInfos.add(shortcut2);
shortcutManager.setDynamicShortcuts(shortcutInfos);
}
我的 list 如下所示:
<application
android:name=".SampleApplication"
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme">
<activity android:name=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
<!--<meta-data android:name="android.app.shortcuts"
android:resource="@xml/shortcuts" />-->
</activity>
<activity android:name=".SampleActivity" />
<activity android:name=".SampleActivity2" />
<activity android:name=".SampleActivity3"></activity>
此代码的问题是这样的。我从后台杀死了应用程序。单击第一个快捷方式。打开
SampleActivity2
。我通过单击“主页”按钮并单击第二个快捷方式最小化了该应用程序。打开SampleActivity3
。到此为止,一切都是正确的。但是现在,如果我单击第一个菜单或第二个菜单,它将始终打开SampleActivity3
,这是最后一个最小化的 Activity 。如果我使用静态的快捷方式执行相同的操作,则可以正常工作:
<shortcuts xmlns:android="http://schemas.android.com/apk/res/android">
<shortcut
android:shortcutId="compose"
android:enabled="true"
android:icon="@mipmap/ic_launcher"
android:shortcutShortLabel="@string/compose_shortcut_short_label1"
android:shortcutLongLabel="@string/compose_shortcut_short_label1"
android:shortcutDisabledMessage="@string/compose_shortcut_short_label1">
<intent
android:action="android.intent.action.VIEW"
android:targetPackage="com.example.nilkash.shortcutmenu"
android:targetClass="com.example.nilkash.shortcutmenu.SampleActivity2" >
<extra android:name="val" android:value="1" />
</intent>
<categories android:name="android.shortcut.conversation" />
</shortcut>
<shortcut
android:shortcutId="compose1"
android:enabled="true"
android:icon="@mipmap/ic_launcher"
android:shortcutShortLabel="@string/compose_shortcut_short_label2"
android:shortcutLongLabel="@string/compose_shortcut_short_label2"
android:shortcutDisabledMessage="@string/compose_shortcut_short_label2">
<intent
android:action="android.intent.action.VIEW"
android:targetPackage="com.example.nilkash.shortcutmenu"
android:targetClass="com.example.nilkash.shortcutmenu.SampleActivity3" >
<extra android:name="val" android:value="2" />
</intent>
<categories android:name="android.shortcut.conversation" />
</shortcut>
并在 list 中我添加了:
<activity android:name=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
<meta-data android:name="android.app.shortcuts"
android:resource="@xml/shortcuts" />
</activity>
我的代码有什么问题吗?需要一些帮助。谢谢你。
最佳答案
发布 list 后可以确认这一点,但是我猜正在发生以下情况:
当您使用第一个快捷方式时,Android会为您的应用创建一个新任务,并将SampleActivity2
启动到该任务中。然后,您按HOME,它将把此任务发送到后台。
现在,您使用第二个快捷方式。由于SampleActivity3
与taskAffinity
具有相同的SampleActivity2
,因此Android将包含SampleActivity2
的现有任务放在前台,然后将SampleActivity3
启动到该任务中。您的任务现在包含SampleActivity2
-> SampleActivity3
。您现在再次按HOME。任务被移至后台。
如果您现在使用第一个快捷方式,则Android会识别出您正在尝试启动现有任务的“根” Activity
,而只是将现有任务置于前台,而不会在其中启动任何新的Activity
。该任务包含SampleActivity2
-> SampleActivity3
,因此您将看到SampleActivity3
,因为这是任务中最重要的Activity
。此行为与您在运行Whatsapp时完全相同,例如,按HOME,然后按HOME屏幕上的Whatsapp图标。这并不是“从头开始启动Whatsapp”,它只是将包含Whatsapp的当前任务以移动到后台时所处的任何状态带到前台。
如果现在按HOME并使用第二个快捷方式,Android将使用与taskAffinity
相同的SampleActivity3
查找任务,并将现有任务置于前台。 Android现在将不执行任何操作(如果SampleActivity3
具有launchMode="singleTop"
),或者创建一个新的SampleActivity3
实例并将其启动到任务中。在这种情况下,您的任务将包含3个Activity
实例:SampleActivity2
-> SampleActivity3
-> SampleActivity3
,您将看到SampleActivity3
,因为这是任务中最重要的Activity
。
注意:如下面的评论讨论所示,添加
addFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_CLEAR_TASK);
如果要确保创建了新的
Intent
实例,则将其添加到用于启动Activity
的Activity
中。否则,Android只会将现有任务置于前台,而不会启动任何新的Activity
。