首页 > 移动平台 > 详细

实现Android桌面的App快捷方式

时间:2015-11-12 19:36:09      阅读:340      评论:0      收藏:0      [点我收藏+]

本文描述的是,在App开发过程中,该如何实现App在Anroid桌面上生成App的快捷方式。主要分为两个步骤:

一,在AndroidManifest.xml中声明相关权限:

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

二,在代码实现如下:

    Intent addIntent=new Intent("com.android.launcher.action.INSTALL_SHORTCUT");
    Parcelable icon=Intent.ShortcutIconResource.fromContext(MainActivity.this,R.drawable.sms);
    Intent myIntent=new Intent(MainActivity.this,MainActivity.class);
    addIntent.putExtra(Intent.EXTRA_SHORTCUT_NAME, "快捷方式");
    addIntent.putExtra(Intent.EXTRA_SHORTCUT_ICON_RESOURCE, icon);
    addIntent.putExtra(Intent.EXTRA_SHORTCUT_INTENT,myIntent);
    sendBroadcast(addIntent);

如此般,你便在应用中实现了生成App的快捷方式到Android桌面。

 

人生苦短,快乐并不是每一天的,珍惜当下。

实现Android桌面的App快捷方式

原文:http://www.cnblogs.com/lfh-francis/p/4959753.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!