和IOS开发和Windows Phone开发相比,Android是开放的,Android上的开发也相对更加灵活,能够做很多事情。有的朋友会发现,在某些Android应用安装以后,第一次运行,就会在桌面创建快捷方式。这是如何做到的呢?

要不怎么说Android特别开放呢,在Android开发中,只要发送一个广播,就可以实现这种需求了。

废话不多说,以下是封装好的一段代码。

 1 public class ShortcutUtil {   2    3     public static void createShortCut(Activity act, int iconResId,   4             int appnameResId) {   5    6         // com.android.launcher.permission.INSTALL_SHORTCUT   7    8         Intent shortcutintent = new Intent(   9                 "com.android.launcher.action.INSTALL_SHORTCUT");  10         // 不允许重复创建  11         shortcutintent.putExtra("duplicate", false);  12         // 需要现实的名称  13         shortcutintent.putExtra(Intent.EXTRA_SHORTCUT_NAME,  14                 act.getString(appnameResId));  15         // 快捷图片  16         Parcelable icon = Intent.ShortcutIconResource.fromContext(  17                 act.getApplicationContext(), iconResId);  18         shortcutintent.putExtra(Intent.EXTRA_SHORTCUT_ICON_RESOURCE, icon);  19         // 点击快捷图片,运行的程序主入口  20         shortcutintent.putExtra(Intent.EXTRA_SHORTCUT_INTENT,  21                 new Intent(act.getApplicationContext(), act.getClass()));  22         // 发送广播  23         act.sendBroadcast(shortcutintent);  24     }  25 }  

代码比较简单,不做更详细的解释。

别忘记增加以下权限,否则看不到任何效果。

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

另外,这样做可能并不友好。更好的做法是,第一次运行程序的时候,提示用户是否创建桌面快捷方式,让用户选择。以后再次运行就不再进行提示了。



更多相关文章

  1. Android入门教程(五)之------第一个Android工程HelloAndroid
  2. Android应用启动后自动创建桌面快捷方式
  3. Android开发的重要方面之Makefile分析
  4. 谷歌关于Android平板应用开发的一些资源
  5. 第一部分:开发前的准备-第三章 Application 基本原理
  6. 如何使用Android(安卓)SDK开发Android应用
  7. Android开发方便快捷的8个好工具
  8. 2019零基础学Android第1课——Android开发环境搭建
  9. 【转】如何成为一个android开发者

随机推荐

  1. Android消息推送(二)--基于MQTT协议实现
  2. android的手势识别例子
  3. App-Launcher-Cordova-Plugin运行已经安
  4. Android 学习笔记4---签名Android的执行
  5. android:限制文本长度加省略号用ellipsize
  6. Android用户界面开发(9):日期和时间
  7. Android - This Handler class should be
  8. Android入门篇四:使用剪切板在Activity之
  9. Android帧布局
  10. 关于迁移AndroidX:引入包名import [packag