文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

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

2022-06-06 07:20

关注

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


package com.xikang.android.slimcoach.utils;

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程序开发之手机APP创建桌面快捷方式Android添加(创建)、删除及判断是否存在桌面快捷方式的方法解析Android应用启动后自动创建桌面快捷方式的实现方法Android 创建/验证/删除桌面快捷方式(已测试可用)android 为应用程序创建桌面快捷方式技巧分享Android编程实现向桌面添加快捷方式的方法Android编程添加快捷方式(Short)到手机桌面的方法(含添加,删除及查询)Android编程实现创建,删除,判断快捷方式的方法Android应用创建多个快捷方式Android实现向Launcher添加快捷方式的方法Android编程创建桌面快捷方式的常用方法小结【2种方法】


阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     813人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     354人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     318人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     435人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     224人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-移动开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯