Android应用创建桌面快捷方式代码
作者:帝都春哥 时间:2022-03-03 00:51:44
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,快捷方式
0
投稿
猜你喜欢
dubbo将异常转换成RuntimeException的原因分析 ExceptionFilter
2023-11-24 14:25:13
为何Linq的Distinct实在是不给力
2023-05-11 17:03:18
Java Netty实现心跳机制过程解析
2023-05-24 21:27:10
Java CAS操作与Unsafe类详解
2023-06-15 10:06:49
C#简单实现文件上传功能
2022-10-03 17:29:41
java编程实现基于UDP协议传输数据的方法
2022-11-14 04:22:22
实例分析Android中HandlerThread线程用法
2022-05-25 23:34:13
Java 多用户登录限制的实现方法
2022-04-06 07:32:46
Android开发签名知识梳理总结
2023-03-15 03:52:02
C#实现开机自动启动设置代码分享
2021-10-08 20:45:14
Java中i++与++i的区别和使用
2022-03-20 18:08:18
Android zip文件下载和解压实例
2023-12-17 01:11:17
android全局监控click事件的四种方式(小结)
2023-05-02 07:33:31
android端微信支付V3版本地签名统一下单详解
2023-05-18 02:37:44
C#对文件名智能排序的算法
2022-05-02 16:18:28
Android线程管理之ActivityThread
2022-05-08 07:48:35
C语言在输入输出时遇到的常见问题总结
2021-11-08 15:22:37
JAVA发送http get/post请求,调用http接口、方法详解
2021-11-02 16:41:19
如何利用Spring把元素解析成BeanDefinition对象
2023-11-23 05:17:16
MyBatis的嵌套查询解析
2023-11-26 16:58:46