码迷,mamicode.com
首页 > 其他好文 > 详细

Shortcut 快捷方式

时间:2015-04-13 19:06:07      阅读:119      评论:0      收藏:0      [点我收藏+]

标签:launcher   shortcut   

创建快捷方式
// 发送广播的意图
  Intent intent = new Intent();
  intent.setAction("com.android.launcher.action.INSTALL_SHORTCUT");
  // 快捷方式要包含3个信息 1.名称2.图标3.干什么
  // 名称
  intent.putExtra(Intent.EXTRA_SHORTCUT_NAME, "Versbilling");
  // 图标
  intent.putExtra(Intent.EXTRA_SHORTCUT_ICON, BitmapFactory
    .decodeResource(getResources(), R.drawable.ic_launcher));
  Intent shortcutIntent = new Intent();
  // 干什么
  shortcutIntent.setAction("android.intent.action.MAIN");
  shortcutIntent.addCategory("android.intent.category.LAUNCHER");
  shortcutIntent.setClassName(getPackageName(),
    "com.asiainfo.versbilling.SplashActivity");
  intent.putExtra(Intent.EXTRA_SHORTCUT_INTENT, shortcutIntent);

  sendBroadcast(intent);

Shortcut 快捷方式

标签:launcher   shortcut   

原文地址:http://blog.csdn.net/kun5069073/article/details/45027797

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!