Android创建快捷图标

/**
 * 创建快捷图标
 * 要包含三个重要信息
 * 1.图标
 * 2.名称
 * 3.点击快捷图标后干什么
 */
public void installShortCut(){
	boolean shortCut = sp.getBoolean("shortCut", false);
	if(shortCut)//如果已经创建过快捷方式了,就不再创建
		return;
	
	//发送广播的意图,桌面创建快捷图标意图
	Intent intent = new Intent();
	intent.setAction("com.android.launcher.action.INSTALL_SHORTCUT");
	intent.putExtra(Intent.EXTRA_SHORTCUT_NAME, "魔兽世界");//设置快捷方式的文字
	//设置快捷方式的图片
	intent.putExtra(Intent.EXTRA_SHORTCUT_ICON, BitmapFactory.decodeResource(getResources(), R.drawable.ic_launcher));
	//桌面点击快捷图标后的意图
	Intent shortCutIntent = new Intent();
	//这种方式创建快捷方式后,把应用程序本身删除,快捷方式也会随之删除
	shortCutIntent.setAction("android.intent.action.MAIN");
	shortCutIntent.addCategory("android.intent.category.LAUNCHER");//启动能力的意图
	shortCutIntent.setClassName(getPackageName(), "com.xxc.mobilesafe.SplashActivity");//点击快捷方式后执行的意图
	
	//像这样创建快捷方式,不是指向程序入口的快捷方式,把应用程序本身给删除后,快捷方式并不会随之删除
	/*shortCutIntent.setAction("com.xxc.pikaxiong");
	shortCutIntent.addCategory(Intent.CATEGORY_DEFAULT);*/
	
	intent.putExtra(Intent.EXTRA_SHORTCUT_INTENT, shortCutIntent);//设置快捷方式点击后的意图
	
	sendBroadcast(intent);
	
	Editor editor = sp.edit();
	editor.putBoolean("shortCut", true);
	editor.commit();
} 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
以下是 Android 动态创建快捷方式的步骤: 1. 首先,您需要在 AndroidManifest.xml 文件中声明您的快捷方式。在应用程序的 <application> 标记内部,添加以下内容: ```xml <activity android:name=".MyShortcutActivity" android:label="@string/shortcut_label"> <intent-filter> <action android:name="android.intent.action.CREATE_SHORTCUT" /> <category android:name="android.intent.category.DEFAULT" /> </intent-filter> </activity> ``` 2. 创建一个新的 Activity 类 MyShortcutActivity,该类将处理创建快捷方式的请求。在 onCreate() 方法中,您可以设置快捷方式的属性,例如快捷方式 ID、快捷方式标签和快捷方式图标。 ```java public class MyShortcutActivity extends Activity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); // 设置快捷方式 ID 和标签 String shortcutId = "my_shortcut"; String shortcutLabel = "My Shortcut"; // 创建快捷方式意图 Intent shortcutIntent = new Intent(Intent.ACTION_VIEW); shortcutIntent.setClassName(this, MainActivity.class.getName()); // 创建快捷方式 ShortcutInfo shortcut = new ShortcutInfo.Builder(this, shortcutId) .setShortLabel(shortcutLabel) .setIcon(Icon.createWithResource(this, R.drawable.shortcut_icon)) .setIntent(shortcutIntent) .build(); // 添加快捷方式 ShortcutManager shortcutManager = getSystemService(ShortcutManager.class); shortcutManager.setDynamicShortcuts(Collections.singletonList(shortcut)); // 结束 Activity finish(); } } ``` 3. 在您的应用程序中,您可以通过调用 ShortcutManager 的 setDynamicShortcuts() 方法来添加动态快捷方式。在这个例子中,我们只添加了一个快捷方式,但您可以添加多个快捷方式。 ```java ShortcutManager shortcutManager = getSystemService(ShortcutManager.class); shortcutManager.setDynamicShortcuts(Collections.singletonList(shortcut)); ```
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值