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

实现Android桌面的App快捷方式

时间:2015-11-12 19:36:40      阅读:265      评论: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
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!