Android Quick shortcuts [passing intent extra(or s

2019-07-15 08:33发布

While implementing the static Shortcuts using shortcut.xml, i would like to pass few bundle extras with my intent.

need the passed extras to decide on few functionality in the target class after launching the app.

is it possible to access the extras? how and where to access it?

Any leads would be highly appreciated

2条回答
再贱就再见
2楼-- · 2019-07-15 09:00

I'm not sure if there is another way, but I use this:

<intent
        android:action="android.intent.action.VIEW"
        android:targetPackage="target.package"
        android:targetClass="activity.with.package">
        <extra android:name="extraID" android:value="extravalue" />
</intent>

Then you can access extras as usual.

查看更多
冷血范
3楼-- · 2019-07-15 09:15

Than why don't you create dynamic shortcuts?

ShortcutManager shortcutManager = getSystemService(ShortcutManager.class);

Intent thirdIntent = new Intent(this,ThirdActivity.class);
thirdIntent.setAction(Intent.ACTION_VIEW);

ShortcutInfo thirdScreenShortcut = new ShortcutInfo.Builder(this, "shortcut_third")
        .setShortLabel("Third Activity")
        .setLongLabel("This is long description for Third Activity")
        .setIcon(Icon.createWithResource(this, R.mipmap.ic_launcher))
        .setIntent(thirdIntent)
        .build();
shortcutManager.setDynamicShortcuts(Collections.singletonList(thirdScreenShortcut));

You can pass whatever you want to send in Intent and access it to receiver activity.

查看更多
登录 后发表回答