您好,登錄后才能下訂單哦!
這篇文章主要為大家展示了“應用程序如何添加桌面快捷方式”,內容簡而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領大家一起研究并學習一下“應用程序如何添加桌面快捷方式”這篇文章吧。
一、在onCreat()方法中添加以下代碼:
SharedPreferences preferences = getSharedPreferences("first",
Context.MODE_PRIVATE);
boolean isFirst = preferences.getBoolean("isfrist", true);
if (isFirst) {
createDeskShortCut();
}
Editor editor = preferences.edit();
editor.putBoolean("isfrist", false);
editor.commit();
二、 createDeskShortCut()方法:
public void createDeskShortCut() {
// 創建快捷方式
Intent shortcutIntent = new Intent(
"com.android.launcher.action.INSTALL_SHORTCUT");
// 不允許重復創建
shortcutIntent.putExtra("duplicate", false);
// 應用名稱
shortcutIntent.putExtra(Intent.EXTRA_SHORTCUT_NAME,
getString(R.string.app_name));
// 快捷圖片
Parcelable icon = Intent.ShortcutIconResource.fromContext(
getApplicationContext(), R.drawable.ic_launcher);
shortcutIntent.putExtra(Intent.EXTRA_SHORTCUT_ICON_RESOURCE, icon);
Intent intent = new Intent(getApplicationContext(), MainActivity.class);
// 點擊快捷方法運行程序
shortcutIntent.putExtra(Intent.EXTRA_SHORTCUT_INTENT, intent);
// 發送廣播
sendBroadcast(shortcutIntent);
}
三、在AndroidManifest中添加權限:
<uses-permissionandroid:name="com.android.launcher.permission.INSTALL_SHORTCUT"/>
以上是“應用程序如何添加桌面快捷方式”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。