2

我在某处读过(但我再也找不到了)应该可以从设备主屏幕上的快捷方式发送附加信息。我成功创建了一个快捷方式,但Bundle extras = getIntent().getExtras();给出了一个空指针。

我按如下方式创建快捷方式:

   Intent shortcutIntent = new Intent(this.getApplicationContext(),
                        Shortcut_Activity.class);

                shortcutIntent.setAction(Intent.ACTION_MAIN);

                Intent addIntent = new Intent();
                addIntent
                        .putExtra(Intent.EXTRA_SHORTCUT_INTENT, shortcutIntent);
                addIntent.putExtra(Intent.EXTRA_SHORTCUT_NAME, name);
                addIntent.putExtra(Intent.EXTRA_SHORTCUT_ICON_RESOURCE,
                        Intent.ShortcutIconResource.fromContext(this.getApplicationContext(),
                                R.drawable.ic_shortcut));
                addIntent.putExtra("ID", id); //THIS IS THE EXTRA DATA I WANT TO ATTACH
                addIntent.setAction("com.android.launcher.action.INSTALL_SHORTCUT");
                this.getApplicationContext().sendBroadcast(addIntent);

可能吗?如果是这样,怎么办?

4

2 回答 2

4

是的,我已经实现了,这是代码

private void addShortcut() {
    //Adding shortcut for MainActivity 
    //on Home screen
    Intent shortcutIntent = new Intent(getApplicationContext(),
            HOMESHORTCUT.class);
    //Set Extra
    shortcutIntent.putExtra("extra", "shortCutTest ");

    shortcutIntent.setAction(Intent.ACTION_MAIN);

    Intent addIntent = new Intent();
    addIntent
            .putExtra(Intent.EXTRA_SHORTCUT_INTENT, shortcutIntent);
    addIntent.putExtra(Intent.EXTRA_SHORTCUT_NAME, "HelloWorldShortcut");
    addIntent.putExtra(Intent.EXTRA_SHORTCUT_ICON_RESOURCE,
            Intent.ShortcutIconResource.fromContext(getApplicationContext(),
                    R.drawable.ic_launcher));

    addIntent.setAction("com.android.launcher.action.INSTALL_SHORTCUT");

    getApplicationContext().sendBroadcast(addIntent);


}
//GET Extra in HOMESHORTCUT activity.
@Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        mTextExtra=new TextView(this);
        Bundle bundel=getIntent().getExtras();
        String getExString=getIntent().getExtras().getString("extra");
        mTextExtra.setText(getExString);
        setContentView(mTextExtra);
    }
于 2014-11-24T06:43:59.957 回答
2

如此处发现:http: //www.joulespersecond.com/2010/04/android-tip-effective-intents/

幸运的是,有一个解决方案。更好的方法是将行 ID 作为 URI 的一部分,而不是作为额外的一部分。所以之前的代码变成了这样:

void returnShortcut(int rowId, String shortcutName) {
    Intent i = new Intent(this, ShowInfoActivity.class);
    i.setData(ContentUris.withAppendedId(BASE_URI, rowId));
    Intent shortcut = new Intent();
    shortcut.putExtra(Intent.EXTRA_SHORTCUT_INTENT, i);
    shortcut.putExtra(Intent.EXTRA_SHORTCUT_NAME, shortcutName);
    setResult(RESULT_OK, shortcut);
    finish();
}

BASE_URI 可以是任何东西,但它应该是特定于您的应用程序的东西。关键是 Data URI 用于确定两个 Intent 是否相等,因此系统最终会为此创建一个新的 Activity,即使具有不同数据的同一个 Activity 在您的任务堆栈上也是如此。

于 2013-03-26T08:10:01.463 回答