码迷,mamicode.com
首页 > 移动开发 > 详细

App添加桌面快捷方式

时间:2015-04-16 19:59:08      阅读:153      评论:0      收藏:0      [点我收藏+]

标签:广播   发送      app   快捷方式   

注释非常详细大家看吧,就是添加一个intent意图,然后发送广播就ok了

/**
* 创建快捷方式
*/
private void createShortCut() {
        // 创建快捷方式的Intent
        Intent shortcutIntent = new Intent("com.android.launcher.action.INSTALL_SHORTCUT");
        // 不允许重复创建
        shortcutIntent.putExtra("duplicate", false);
        // 快捷方式的名字
        shortcutIntent.putExtra(Intent.EXTRA_SHORTCUT_NAME,shortcut_name);
        // 快捷方式icon
        Parcelable icon = Intent.ShortcutIconResource.fromContext(
                MainActivity.this, R.mipmap.shortcut);
        //设置icon
        shortcutIntent.putExtra(Intent.EXTRA_SHORTCUT_ICON_RESOURCE, icon);
        // 点击快捷图片,运行的程序主入口
        Intent intent = new Intent(MainActivity.this,
                MainActivity.class);

        shortcutIntent.putExtra(Intent.EXTRA_SHORTCUT_INTENT, intent);
        // 发送广播,创建快捷方式
        sendBroadcast(shortcutIntent);

        Toast.makeText(MainActivity.this,"快捷方式创建",Toast.LENGTH_SHORT).show();
}

App添加桌面快捷方式

标签:广播   发送      app   快捷方式   

原文地址:http://blog.csdn.net/yy1300326388/article/details/45078867

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