java 如何创建安卓桌面快捷方式_Android应用创建桌面快捷方式代码

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对象。

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

这样在希望增加快捷方式的时候,就可以给用户一个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);

}

}

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

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
Android开发中,可以使用ShortcutManager类来创建和管理快捷方式。要创建一个桌面快捷方式,首先需要判断启动器是否支持创建快捷方式。可以使用ShortcutManager的isRequestPinShortcutSupported()方法来进行判断。接下来,可以通过实例化ShortcutInfo对象来设置快捷方式的相关属性,比如应用图标、名称、Intent等。最后,通过requestPinShortcut()方法来请求创建快捷方式。 对于autojs桌面快捷方式创建,你可以按照以下步骤进行操作: 1. 首先,判断启动器是否支持创建快捷方式。你可以使用以下代码获取ShortcutManager实例,并调用isRequestPinShortcutSupported()方法来判断: ```java ShortcutManager shortcutManager = context.getSystemService(Context.SHORTCUT_SERVICE); boolean requestPinShortcutSupported = shortcutManager.isRequestPinShortcutSupported(); ``` 2. 创建一个Intent对象,用于启动autojs应用。你可以使用以下代码创建Intent: ```java Intent launchIntent = context.getPackageManager().getLaunchIntentForPackage("com.autojs.autojs"); ``` 这里假设autojs应用的包名为"com.autojs.autojs"。 3. 创建一个ShortcutInfo对象,并设置相关属性,包括应用图标、名称和启动Intent等。以下是一个示例代码: ```java ShortcutInfo shortcutInfo = new ShortcutInfo.Builder(context, "autojs_shortcut") .setIcon(Icon.createWithResource(context, R.drawable.autojs_icon)) .setShortLabel("AutoJS") .setLongLabel("AutoJS") .setIntent(launchIntent) .build(); ``` 这里假设你已经准备好了一张名为"autojs_icon"的应用图标资源。 4. 最后,通过调用requestPinShortcut()方法来请求创建快捷方式: ```java shortcutManager.requestPinShortcut(shortcutInfo, null); ``` 这样,你就可以通过以上步骤来创建一个autojs桌面快捷方式了。请注意,这些代码需要在Android 8.0及以上的版本中才能正常工作。<span class="em">1</span><span class="em">2</span><span class="em">3</span> #### 引用[.reference_title] - *1* *2* *3* [autojs之桌面快捷方式](https://blog.csdn.net/snailuncle2/article/details/115012177)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_2"}}] [.reference_item style="max-width: 100%"] [ .reference_list ]

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值