您的位置:首页 > 移动开发 > Android开发

Android创建快捷方式

2015-09-07 21:55 281 查看
1.权限

    <uses-permission android:name="com.android.launcher.permission.UNINSTALL_SHORTCUT" />

    <uses-permission android:name="com.android.launcher.permission.INSTALL_SHORTCUT" />

2.

  Intent dowhtIntent = new Intent(this, MainActivity.class);//MainActivity是点击快捷方式时要跳转的activity

3.

                Intent intent = new Intent();
intent.setAction("com.android.launcher.action.INSTALL_SHORTCUT");//设置action,就是这样写,不用改
intent.putExtra("duplicate", false);//设置快捷方式不重复

intent.putExtra(Intent.EXTRA_SHORTCUT_NAME, name);// 设置快捷方式名字
intent.putExtra(Intent.EXTRA_SHORTCUT_INTENT, dowhtIntent);//指定要跳转的activity的intent

4.

            _context.sendBroadcast(intent);//发送广播,创建快捷方式
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  android 快捷方式