我正在尝试开发一个自定义启动器,它将包含我已安装的应用程序(甚至是apk文件)的快捷方式。我可以在应用程序外部创建一个快捷方式,我需要做的是在我的启动器活动中创建它。我怎么能这样做?
AdminActivity.java (此活动包含一种能够从设备创建已安装应用的快捷方式的方法)
private boolean installUninstall_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) {
intent.putExtra(Intent.EXTRA_SHORTCUT_ICON_RESOURCE, Intent.ShortcutIconResource.fromContext(context, R.drawable.ic_launcher));
intent.setAction("com.android.launcher.action.INSTALL_SHORTCUT");
} else {
intent.setAction("com.android.launcher.action.UNINSTALL_SHORTCUT");
}
context.sendBroadcast(intent);
} else
System.out.println("applicaton not found");
return true;
}
activity_launcher.xml (这是Launcher Activity的布局,其中包含快捷方式。我真的不知道如何在此活动中创建创建的快捷方式)
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/plain_without_logo"
tools:context=".S_2nd_MainActivity" >
<GridView
android:id="@+id/grid_app"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:columnWidth="80dp"
android:gravity="center"
android:horizontalSpacing="15dp"
android:numColumns="auto_fit"
android:padding="10dp"
android:stretchMode="columnWidth"
android:verticalSpacing="15dp" />
答案 0 :(得分:0)
您创建的不是主屏幕的启动器,它只是一个应用程序。启动器类别是指所有应用程序抽屉中列出的活动。我不认为应用程序可以添加自己的快捷方式,否则垃圾邮件可能会像这样继续将其图标添加到主屏幕并使每个用户烦恼。
另外installUninstall_ShortCut不是我们用Java命名的东西!实际上它与我遇到的任何命名约定都不匹配
如果您想模仿类似添加快捷方式的功能,那么您可以获取网格视图并在其上调用addView