我们已为我们的两个应用屏幕启用了快捷方式。使用manifest,我们初始化了Activity,它指的是如下的快捷方式。
<activity
android:name=".ui.shortcuts.ShortCut1"
android:screenOrientation="portrait"
android:icon="@drawable/shortcut1"
android:label="@string/app_shortcut_name1"
android:theme="@style/AppLightTheme">
<intent-filter>
<category android:name="android.intent.category.DEFAULT" />
<action android:name="android.intent.action.CREATE_SHORTCUT" />
</intent-filter>
</activity>
从代码中我启用了以下快捷方式。
Intent shortcutIntent = null;
shortcutIntent = new Intent(ApplicationNekt.getContext(), ShortCut1.class);
shortcutIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
shortcutIntent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
Intent intent = new Intent();
intent.putExtra("duplicate", false);
intent.putExtra(Intent.EXTRA_SHORTCUT_INTENT, shortcutIntent);
intent.putExtra(Intent.EXTRA_SHORTCUT_NAME, ApplicationNekt.getContext().getString(R.string.app_shortcut_name1));
intent.putExtra(Intent.EXTRA_SHORTCUT_ICON_RESOURCE,Intent.ShortcutIconResource.fromContext(ApplicationNekt.getContext(), R.drawable.shortcut1));
intent.setAction("com.android.launcher.action.INSTALL_SHORTCUT");
ApplicationNekt.getContext().sendBroadcast(intent);
现在在Nova和Action发射器中,它们在快捷方式下显示快捷方式部分,其中包含我在清单中提供的图标和文字。如果我点击并按住,我可以将图标放在主页选项卡上。紧接着,我的目标活动就会打开。但是当我回到手机主屏幕时,他们在上一步中创建的快捷图标被删除了。
我在这里错过了什么吗?
答案 0 :(得分:1)
来自Nova launcher的Kevin回复支持电子邮件。
它也在不同的帖子Android define shortcut that can be used in custom launcher
中解释在我的情况下,我既有快捷方式添加代码,也支持想要从Nova / Action Launcher的Widget屏幕添加快捷方式的用户。所以我做了以下几点。
下面我在ShortCut1.java类文件中编写的代码。这是活动代码。
public class ShortCut1 extends Activity{
@Override
protected void onCreate(@Nullable Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
// This code runs when the user actually clicks and
// opens the shortcut. so redirect him to target screen.
openTargetTab(0);
// This code is useful when called by the Nova/Action launcher's
// widget is clicked. So return them with icon, name and target
// activity. Once they receive it they will set the short cut icon on home.
// Note: Even when the shortcut is clicked, this result is set,
// but nobody reads the response. So it should be ok.
Intent resIntent = getResIntent();
setResult(RESULT_OK, resIntent);
finish();
}
private Intent getResIntent() {
Intent shortcutIntent = new Intent();
// Target intent is set to this own class. So that when the user clicks on the shortcut this intent will be passed.
Intent target = new Intent(this, ShortCut1.class);
shortcutIntent.putExtra(Intent.EXTRA_SHORTCUT_INTENT, target);
shortcutIntent.putExtra(Intent.EXTRA_SHORTCUT_NAME,
Application.getContext().getString(R.string.shortcut_name));
shortcutIntent.putExtra(Intent.EXTRA_SHORTCUT_ICON_RESOURCE,
Intent.ShortcutIconResource.fromContext(Application.getContext(),
R.drawable.shortcut1));
return shortcutIntent;
}
private void openHomeTab(int tabIndex) {
// Final target screen.
Intent intent = new Intent(this, TargetActivity.class);
startActivity(intent);
}
}
注意:我没有删除或更改Manifest上的任何代码或添加代码的快捷方式。由于我在我的应用程序中也需要支持,因此我保留了该代码。因此,当用户单击“添加快捷方式”时,该代码将运行。只有我在这里做的改变是,我称之为具有适当意图的“Setresult”,这是第三方发射器可以理解的。