Androidアプリケーションの追加(作成)と削除、デスクトップショートカットがあるかどうかを判断します.
Androidデスクトッププログラムは、アプリケーションの追加と削除デスクトップショートカットの機能を提供し、ショートカットが存在するかどうかを判断し、ショートカット方式のタイトル、アイコン、およびショートカット方式で実行されるアプリケーションIntentを入力すればよい.コードは以下の通りです.1、Androidはデスクトップのショートカットを追加します.
住所:Androidアプリケーションの追加(作成)と削除、デスクトップショートカットの有無の判断 http://orgcent.com/android-add-del-shortcut-desktop/
/** * * * @param cx * @param appName * */ public static void addShortcut(Context cx) { Intent shortcut = new Intent("com.android.launcher.action.INSTALL_SHORTCUT"); Intent shortcutIntent = cx.getPackageManager() .getLaunchIntentForPackage(cx.getPackageName()); shortcut.putExtra(Intent.EXTRA_SHORTCUT_INTENT, shortcutIntent); // String title = null; try { final PackageManager pm = cx.getPackageManager(); title = pm.getApplicationLabel( pm.getApplicationInfo(cx.getPackageName(), PackageManager.GET_META_DATA)).toString(); } catch (Exception e) { } // shortcut.putExtra(Intent.EXTRA_SHORTCUT_NAME, title); // ( ) shortcut.putExtra("duplicate", false); //
住所:Androidアプリケーションの追加(作成)と削除、デスクトップショートカットの有無の判断 http://orgcent.com/android-add-del-shortcut-desktop/