要不怎麼說Android特別開放呢,在Android開發中,只要發送一個廣播,就可以實現這種需求了。
廢話不多說,以下是封裝好的一段代碼。
複製代碼 代碼如下:public class ShortcutUtil {
public static void createShortCut(Activity act, int iconResId,
int appnameResId) {
// com.android.launcher.permission.INSTALL_SHORTCUT
Intent shortcutintent = new Intent(
"com.android.launcher.action.INSTALL_SHORTCUT");
// 不允許重複建立
shortcutintent.putExtra("duplicate", false);
// 需要現實的名稱
shortcutintent.putExtra(Intent.EXTRA_SHORTCUT_NAME,
act.getString(appnameResId));
// 快捷圖片
Parcelable icon = Intent.ShortcutIconResource.fromContext(
act.getApplicationContext(), iconResId);
shortcutintent.putExtra(Intent.EXTRA_SHORTCUT_ICON_RESOURCE, icon);
// 點擊快捷圖片,啟動並執行程式主入口
shortcutintent.putExtra(Intent.EXTRA_SHORTCUT_INTENT,
new Intent(act.getApplicationContext(), act.getClass()));
// 發送廣播
act.sendBroadcast(shortcutintent);
}
}
代碼比較簡單,不做更詳細的解釋。
別忘記增加以下許可權,否則看不到任何效果。
<uses-permission android:name="com.android.launcher.permission.INSTALL_SHORTCUT"/>
另外,這樣做可能並不友好。更好的做法是,第一次運行程式的時候,提示使用者是否建立案頭捷徑,讓使用者選擇。以後再次運行就不再進行提示了。