解析Android應用啟動後自動建立案頭捷徑的實現方法

來源:互聯網
上載者:User

要不怎麼說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"/>

另外,這樣做可能並不友好。更好的做法是,第一次運行程式的時候,提示使用者是否建立案頭捷徑,讓使用者選擇。以後再次運行就不再進行提示了。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.