程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> android-如何讓launcher自動為新安裝apk創建快捷方式到桌面

android-如何讓launcher自動為新安裝apk創建快捷方式到桌面

編輯:編程綜合問答
如何讓launcher自動為新安裝apk創建快捷方式到桌面

這是關於launcher的開發,目的是launcher 自動給新安裝的app創建快捷方式不是 app給自己創建快捷方式到workspace。求指點,謝謝!

最佳回答:


Intent shortcut = new Intent("com.android.launcher.action.INSTALL_SHORTCUT");

shortcut.putExtra(Intent.EXTRA_SHORTCUT_NAME, info.title.toString());
Intent respondIntent = info.intent;
shortcut.putExtra(Intent.EXTRA_SHORTCUT_INTENT, respondIntent);
Context pkgContext = null;
int iconIdentifier = 0;
PackageManager manager = mLauncher.getPackageManager();
System.out.println("manager="+manager);
android.content.pm.ApplicationInfo appInfo;
try {
appInfo = manager.getApplicationInfo(packageName, PackageManager.GET_META_DATA);
iconIdentifier = appInfo.icon;
} catch (NameNotFoundException e1) {
e1.printStackTrace();
}
try {
pkgContext = mLauncher.createPackageContext(packageName,Context.CONTEXT_IGNORE_SECURITY
| Context.CONTEXT_INCLUDE_CODE);
} catch (NameNotFoundException e) {
e.printStackTrace();
}
if (pkgContext != null) {
ShortcutIconResource iconRes = Intent.ShortcutIconResource
.fromContext(pkgContext, iconIdentifier);
shortcut.putExtra(Intent.EXTRA_SHORTCUT_ICON_RESOURCE,iconRes);
}
mLauncher.sendBroadcast(shortcut);

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved