Android應(yīng)用創(chuàng)建桌面快捷方式代碼
android的快捷方式比較簡單,就是發(fā)一個系統(tǒng)的廣播,然后為快捷方式設(shè)置Intent---
package com.xikang.android.slimcoach.utils;
/**
* @author huiych
* 創(chuàng)建快捷方式
* @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");
//不能重復(fù)創(chuàng)建快捷方式
addShortCut.putExtra("duplicate", false);
String title = AppXiKang.getApp().getString(R.string.app_name);//名稱
Parcelable icon = Intent.ShortcutIconResource.fromContext(AppXiKang.getApp(), R.drawable.icon);//圖標(biāo)
//點擊快捷方式后操作Intent,快捷方式建立后,再次啟動該程序
Intent intent = new Intent(AppXiKang.getApp(), AppStart.class);
//設(shè)置快捷方式的標(biāo)題
addShortCut.putExtra(Intent.EXTRA_SHORTCUT_NAME, title);
//設(shè)置快捷方式的圖標(biāo)
addShortCut.putExtra(Intent.EXTRA_SHORTCUT_ICON_RESOURCE, icon);
//設(shè)置快捷方式對應(yīng)的Intent
addShortCut.putExtra(Intent.EXTRA_SHORTCUT_INTENT, intent);
//發(fā)送廣播添加快捷方式
AppXiKang.getApp().sendBroadcast(addShortCut);
}
}
AppXiKange.getApp(),是獲取Activity對象。
注意,要在清單文件中設(shè)置權(quán)限
這樣在希望增加快捷方式的時候,就可以給用戶一個alertdialog,提示,然后引用。就可以了。
市場上也有很多應(yīng)用是在應(yīng)用安裝的時候直接創(chuàng)建快捷方式。不過這樣的實現(xiàn)不是很友好。不建議使用。
下面上個完整的代碼演示,使用的方法和上面的稍有不同:
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); //不允許重復(fù)創(chuàng)建
//指定當(dāng)前的Activity為快捷方式啟動的對象: 如
//com.everest.video.VideoPlayer
//注意: ComponentName的第二個參數(shù)必須加上點號(.),否則快捷方式無法啟動相應(yīng)程序
ComponentName comp = new ComponentName(AppXiKang.getApp().getPackageName(), "."+acti.getLocalClassName());
shortcut.putExtra(Intent.EXTRA_SHORTCUT_INTENT, new Intent(Intent.ACTION_MAIN).setComponent(comp));
//快捷方式的圖標(biāo)
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);
}
}
以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。
相關(guān)文章
Android開發(fā)之進度條ProgressBar的示例代碼
本篇文章主要介紹了Android開發(fā)之進度條ProgressBar的示例代碼,小編覺得挺不錯的,現(xiàn)在分享給大家,也給大家做個參考。一起跟隨小編過來看看吧2018-03-03
Android使用PhotoView實現(xiàn)圖片雙擊放大單擊退出效果
這篇文章主要為大家詳細介紹了Android使用PhotoView實現(xiàn)圖片雙擊放大單擊退出效果,具有一定的參考價值,感興趣的小伙伴們可以參考一下2017-12-12
詳解Android10的分區(qū)存儲機制(Scoped Storage)適配教程
這篇文章主要介紹了詳解Android10的分區(qū)存儲機制(Scoped Storage)適配教程,文中通過示例代碼介紹的非常詳細,對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價值,需要的朋友們下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧2020-05-05

