我已经在某个地方读过(但我找不到了)应该可以从设备主屏幕上的快捷方式发送附加内容。我成功创建了一个快捷方式,但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);
有可能吗?如果,怎么样?
答案 0 :(得分: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);
}
答案 1 :(得分: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可以是任何东西,但它应该是特定于您的应用程序的东西。关键是数据URI用于确定两个意图是否相等,因此系统最终会为此创建一个新的活动,即使具有不同数据的相同活动在您的任务堆栈上也是如此。