我目前正在開發一個應用程序,可以創建設備的所有安裝應用程序的快捷方式。爲了創建快捷方式,用戶需要以管理員身份登錄,並從該活動登錄,其中包含一個ListView,其中包含所有已安裝的應用程序。用戶需要選擇app/s,以便創建快捷方式。如何在Android的自定義啓動器中創建應用快捷方式?
private boolean Generate_Shortcut(Context context, String appName, boolean isTrue) {
boolean flag =false ;
int app_id=-1;
PackageManager pm = context.getPackageManager();
Intent i = new Intent(Intent.ACTION_MAIN);
i.addCategory(Intent.CATEGORY_LAUNCHER);
List<ResolveInfo> res = pm.queryIntentActivities(i,0);
for(int k=0; k<res.size(); k++) {
if(res.get(k).activityInfo.loadLabel(pm).toString().equals(appName)){
flag = true;
app_id = k;
break;
}
}
if(flag) {
ActivityInfo ai = res.get(app_id).activityInfo;
Intent shortcutIntent = new Intent(Intent.ACTION_MAIN);
shortcutIntent.setClassName(ai.packageName, ai.name);
shortcutIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
shortcutIntent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
Intent intent = new Intent();
intent.putExtra(Intent.EXTRA_SHORTCUT_INTENT, shortcutIntent);
intent.putExtra(Intent.EXTRA_SHORTCUT_NAME, appName);
intent.putExtra("duplicate", false);
if(isTrue) {
// CREATE SHORTCUT
intent.putExtra(Intent.EXTRA_SHORTCUT_ICON_RESOURCE, Intent.ShortcutIconResource.fromContext(context, R.drawable.ic_launcher));
intent.setAction("com.android.launcher.action.INSTALL_SHORTCUT");
} else {
// REMOVE SHORTCUT
intent.setAction("com.android.launcher.action.UNINSTALL_SHORTCUT");
}
context.sendBroadcast(intent);
} else
System.out.println("applicaton not found");
return true;
}
選擇應用程序後,它將在主活動中創建一個具有GridView的快捷方式。這裏的問題是創建的快捷方式是在主屏幕中創建的。現在我的問題是,如何在我的應用程序(MainActivity.java)中創建一個快捷方式,而不是在主屏幕中?
請您詳細說明「在當前正在開發的應用程序中創建一個快捷方式」嗎?你想創造一種發射器嗎? –
@AndrewT。,是的,這就是我想要做的。我想在我的應用程序內創建一個啓動器。 – androidBoomer
由於快捷方式位於您自己的應用程序內,因此您可以根據自己的需要進行操作。只需存儲您已經顯示給用戶的信息,然後使用它。 –