10月 132011
// ショートカットインテントを作成 // Intent shortcutIntent=new Intent(Intent.ACTION_VIEW); Intent shortcutIntent = new Intent(Intent.ACTION_DIAL, Uri.parse("tel:0123456789")); //shortcutIntent.setClassName(this, MySampleActivity.class.getName()); // メッセージを設定 shortcutIntent.putExtra("MESSAGE","WE ARE TECHBOOSTER!!!"); // インテント送信 sendBroadcast(makeIntent("shortcut2", shortcutIntent));