Android应用创建桌面快捷方式代码

所属分类: 软件编程 / Android 阅读数: 31
收藏 0 赞 0 分享

android的快捷方式比较简单,就是发一个系统的广播,然后为快捷方式设置Intent---

package com.xikang.android.slimcoach.utils;
/**
 * @author huiych
 * 创建快捷方式
 * @created 2013-02-21
 * */
import android.content.Intent;
import android.os.Parcelable;

import com.xikang.android.slimcoach.AppXiKang;
import com.xikang.android.slimcoach.R;
import com.xikang.android.slimcoach.ui.AppStart;

public class ShortCutUtil {
 public static void initShortCut(){
 Intent addShortCut = new Intent("com.android.launcher.action.INSTALL_SHORTCUT");
 //不能重复创建快捷方式
 addShortCut.putExtra("duplicate", false);
    String title = AppXiKang.getApp().getString(R.string.app_name);//名称 
    Parcelable icon = Intent.ShortcutIconResource.fromContext(AppXiKang.getApp(), R.drawable.icon);//图标 
    //点击快捷方式后操作Intent,快捷方式建立后,再次启动该程序  
    Intent intent = new Intent(AppXiKang.getApp(), AppStart.class);  
    //设置快捷方式的标题  
    addShortCut.putExtra(Intent.EXTRA_SHORTCUT_NAME, title);  
    //设置快捷方式的图标  
    addShortCut.putExtra(Intent.EXTRA_SHORTCUT_ICON_RESOURCE, icon);  
    //设置快捷方式对应的Intent  
    addShortCut.putExtra(Intent.EXTRA_SHORTCUT_INTENT, intent);  
   //发送广播添加快捷方式  
    AppXiKang.getApp().sendBroadcast(addShortCut);
 }
}

AppXiKange.getApp(),是获取Activity对象。

注意,要在清单文件中设置权限

复制代码 代码如下:
<uses-permission android:name="com.android.launcher.permission.INSTALL_SHORTCUT"/>

这样在希望增加快捷方式的时候,就可以给用户一个alertdialog,提示,然后引用。就可以了。

市场上也有很多应用是在应用安装的时候直接创建快捷方式。不过这样的实现不是很友好。不建议使用。

下面上个完整的代码演示,使用的方法和上面的稍有不同:

public class ShortCutUtil {
public static void initShortCut(Activity acti){
Intent shortcut = new Intent("com.android.launcher.action.INSTALL_SHORTCUT"); 
//快捷方式的名称 
shortcut.putExtra(Intent.EXTRA_SHORTCUT_NAME, AppXiKang.getApp().getString(R.string.app_name)); 
shortcut.putExtra("duplicate", false); //不允许重复创建 
//指定当前的Activity为快捷方式启动的对象: 如 
//com.everest.video.VideoPlayer 
//注意: ComponentName的第二个参数必须加上点号(.),否则快捷方式无法启动相应程序 
ComponentName comp = new ComponentName(AppXiKang.getApp().getPackageName(), "."+acti.getLocalClassName()); 
shortcut.putExtra(Intent.EXTRA_SHORTCUT_INTENT, new Intent(Intent.ACTION_MAIN).setComponent(comp)); 
//快捷方式的图标 
ShortcutIconResource iconRes = Intent.ShortcutIconResource.fromContext(AppXiKang.getApp(), R.drawable.icon); 
shortcut.putExtra(Intent.EXTRA_SHORTCUT_ICON_RESOURCE, iconRes); 
AppXiKang.getApp().sendBroadcast(shortcut);
}
public static void delShortcut(Activity acti){
    Intent shortcut = new Intent("com.android.launcher.action.UNINSTALL_SHORTCUT"); 
        
    //快捷方式的名称 
    shortcut.putExtra(Intent.EXTRA_SHORTCUT_NAME, AppXiKang.getApp().getString(R.string.app_name)); 
    String appClass = AppXiKang.getApp().getPackageName() + "." +acti.getLocalClassName(); 
    ComponentName comp = new ComponentName(AppXiKang.getApp().getPackageName(), appClass); 
    shortcut.putExtra(Intent.EXTRA_SHORTCUT_INTENT, new Intent(Intent.ACTION_MAIN).setComponent(comp)); 
    AppXiKang.getApp().sendBroadcast(shortcut);
  }
}

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。

更多精彩内容其他人还在看

Android中加入名片扫描功能实例代码

这篇文章主要介绍了Android中加入名片扫描功能实例代码的相关资料,需要的朋友可以参考下
收藏 0 赞 0 分享

Android仿微信发表说说实现拍照、多图上传功能

这篇文章主要为大家详细介绍了Android仿微信发表说说实现拍照、多图上传功能,使用Retrofit2.0技术,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
收藏 0 赞 0 分享

设置Android系统永不锁屏永不休眠的方法

在进行Android系统开发的时候,有些特定的情况需要设置系统永不锁屏,永不休眠。本篇文章给大家介绍Android 永不锁屏,开机不锁屏,删除设置中休眠时间选项,需要的朋友一起学习吧
收藏 0 赞 0 分享

Android Retrofit 2.0框架上传图片解决方案

这篇文章主要介绍了Android Retrofit 2.0框架上传一张与多张图片解决方案,感兴趣的小伙伴们可以参考一下
收藏 0 赞 0 分享

Android自定义等待对话框

这篇文章主要为大家详细介绍了Android自定义等待对话框的实现方法,感兴趣的小伙伴们可以参考一下
收藏 0 赞 0 分享

Android中Window添加View的底层原理

这篇文章主要介绍了Android中Window添加View的底层原理,需要的朋友可以参考下
收藏 0 赞 0 分享

Android调用系统默认浏览器访问的方法

这篇文章主要介绍了Android调用系统默认浏览器访问的方法的相关资料,需要的朋友可以参考下
收藏 0 赞 0 分享

Android开发退出程序的方法汇总

Android程序有很多Activity,比如说主窗口A,调用了子窗口B,子窗口B又调用子窗口C,back返回子窗口B后,在B中如何关闭整个Android应用程序呢? 下面脚本之家小编就给大家介绍android开发退出程序的几种方法,感兴趣的朋友参考下吧
收藏 0 赞 0 分享

Android程序开发中单选按钮(RadioGroup)的使用详解

在android程序开发中,无论是单选按钮还是多选按钮都非常的常见,接下来通过本文给大家介绍Android程序开发中单选按钮(RadioGroup)的使用,需要的朋友参考下吧
收藏 0 赞 0 分享

Android实现仿网易今日头条等自定义频道listview 或者grideview等item上移到另一个view中

这篇文章主要介绍了Android实现仿网易今日头条等自定义频道listview 或者grideview等item上移到另一个view中 的相关资料,需要的朋友可以参考下
收藏 0 赞 0 分享
查看更多