我创建了一个测试Activity,它在Android主屏幕上安装了自己的快捷方式。单击按钮时,Activity应该删除它刚刚创建的相同快捷方式。但是,我没做什么似乎删除了快捷方式。
这是Java代码(ShortcutTest.java):
import java.net.URISyntaxException;
import android.app.Activity;
import android.content.Context;
import android.content.Intent;
import android.os.Bundle;
import android.util.Log;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
public class ShortcutTest extends Activity {
String shortcutUri;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
addShortcut(getBaseContext());
Button button = (Button)findViewById(R.id.Button01);
button.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
removeShortcut(getBaseContext());
finish();
}
});
}
public void addShortcut(Context context) {
Intent shortcutIntent = new Intent();
shortcutIntent.setClassName("com.telespree.android.client", "com.telespree.android.client.ShortcutTest");
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, "ShortcutTest");
intent.putExtra(Intent.EXTRA_SHORTCUT_ICON_RESOURCE, Intent.ShortcutIconResource.fromContext(context, R.drawable.icon));
intent.setAction("com.android.launcher.action.INSTALL_SHORTCUT");
shortcutUri = intent.toUri(MODE_WORLD_WRITEABLE);
context.sendBroadcast(intent);
}
public void removeShortcut(Context context) {
Intent intent = null;
try {
intent = Intent.parseUri(shortcutUri, 0);
} catch (URISyntaxException e) {
}
intent.setAction("com.android.launcher.permission.UNINSTALL_SHORTCUT");
context.sendBroadcast(intent);
}
}
这是清单:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.telespree.android.client"
android:versionCode="1"
android:versionName="1.0">
<permission
android:name="com.android.launcher.permission.UNINSTALL_SHORTCUT"
android:permissionGroup="android.permission-group.SYSTEM_TOOLS"
android:protectionLevel="normal"
/>
<application android:icon="@drawable/icon" android:label="@string/app_name">
<activity android:name=".ShortcutTest"
android:label="@string/app_name" android:theme="@android:style/Theme.Translucent">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
<uses-permission android:name="com.android.launcher.permission.INSTALL_SHORTCUT"/>
<!--
<uses-permission android:name="com.android.launcher.permission.UNINSTALL_SHORTCUT"/>
-->
<uses-sdk android:minSdkVersion="7" />
</manifest>
我几乎肯定存在某种权限问题,虽然我在互联网上看到其他帖子表明这应该是可能的。
非常感谢任何建议。
感谢。
答案 0 :(得分:20)
这个答案发布于2014年,当时描述的方法依赖于大多数Android设备中存在的功能。但是,如Adrian-Costin Țundrea所述,此功能was removed几年前来自Launcher3,它是Google Now Launcher所基于的AOSP启动器 1 。提交消息说:
由于其设计不佳而取消支持。删除快捷方式 导致完全重新加载。我们也没有任何所有者的概念,所以 任何应用都可以删除任何快捷方式。
截至2017年3月,该发射器也is being phased out赞成&#34; Google Search Launcher Services&#34;,这意味着制造商可以将某个Google库集成到他们自己的自定义发射器中,而不是依靠Google提供的标准化发射器。
考虑到每个制造商可以自由地以他们想要的方式实现他们的启动器,并假设其中一些基于Launcher3,很难分辨下面的方法将使用哪些设备,因为Launcher3是即使在某些Android 4.1设备上也可以运行,这些设备属于oldest devices still in use。
我刚刚处理了同样的问题,并希望在成功解决之后分享我的经验。 tl; dr - 跳到&#34;在结论&#34;以下强>
在处理&#34;下一版本&#34;一个应用程序,需要更改默认入口点(即重命名&#34;主要活动&#34;)。这是不赞成因为从旧版本升级的用户仍然会使用旧的快捷方式,指向错误的位置。为了尽可能避免出现问题,在他们不知情的第一次发布时,旧的捷径将被换成新的捷径。
这是最简单的部分。要声明一个入口点唯一要做的事情是将以下<action ...>
标记放入您的清单中的相应活动声明中:
<activity
android:name="YOUR_PACKAGE_NAME.YOUR_ACTIVITY_NAME"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
</intent-filter>
</activity>
在某种意义上,入口点默认的作用是启动器快捷方式指向它。这就是开发人员通常也在<intent-filter>
:
<category android:name="android.intent.category.LAUNCHER"/>
应该注意的是,在<intent-filter>
中包含此内容的每个活动都会在您的应用抽屉中创建一个项目 - 这就是为什么大多数情况下只需要1个实例。< / p>
拥有root设备,我可以访问存储启动器/主屏幕/桌面项目的数据库表(see image of what the SQLite entries looks like)位于:
/data/data/com.android.launcher/databases/launcher.db -> SELECT * FROM favorites`
以下是图片中突出显示的条目的可读版本:
#Intent;
action=android.intent.action.MAIN;
category=android.intent.category.LAUNCHER;
launchFlags=0x10200000;
package=gidutz.soft.bluecard;
component=gidutz.soft.bluecard/.LoadingScreen;
end
请注意0x10200000
- 在下面的第4步 - 尝试1 中对此进行了解释。
UninstallShortcutReceiver.java
中的第38-42行告诉我们:
Intent intent = data.getParcelableExtra(Intent.EXTRA_SHORTCUT_INTENT);
String name = data.getStringExtra(Intent.EXTRA_SHORTCUT_NAME);
boolean duplicate = data.getBooleanExtra(Launcher.EXTRA_SHORTCUT_DUPLICATE, true);
if (intent != null && name != null) { ... }
意味着&#34;卸载意图&#34;必须 Intent.EXTRA_SHORTCUT_INTENT
和Intent.EXTRA_SHORTCUT_NAME
,否则它甚至不会考虑执行。
这是一个试错的案例,结局很快。
Intent oldShortcutIntent = new Intent();
oldShortcutIntent.setAction(Intent.ACTION_MAIN);
oldShortcutIntent.addCategory(Intent.CATEGORY_LAUNCHER);
oldShortcutIntent.addFlags(Intent.FLAG_ACTIVITY_RESET_TASK_IF_NEEDED +
Intent.FLAG_ACTIVITY_NEW_TASK);
oldShortcutIntent.setPackage("gidutz.soft.bluecard");
oldShortcutIntent.setComponent(new ComponentName("gidutz.soft.bluecard",
".LoadingScreen"));
// The above line is equivalent to:
Intent oldShortcutIntent = new Intent(getApplicationContext(),LoadingScreen.class);
Intent uninstaller = new Intent();
uninstaller.putExtra(Intent.EXTRA_SHORTCUT_INTENT, oldShortcutIntent);
uninstaller.putExtra(Intent.EXTRA_SHORTCUT_NAME, "Blue Card");
uninstaller.setAction("com.android.launcher.action.UNINSTALL_SHORTCUT");
getApplicationContext().sendBroadcast(uninstaller);
结果:图标未删除。
0x10200000
实际上是两个参数的总和,如here所述。
Intent shortcutIntent = new Intent(getApplicationContext(),LoadingScreen.class);
shortcutIntent.setAction(Intent.ACTION_MAIN);
Intent addIntent = new Intent();
addIntent.putExtra(Intent.EXTRA_SHORTCUT_INTENT, shortcutIntent);
addIntent.putExtra(Intent.EXTRA_SHORTCUT_NAME, "Blue Card");
addIntent.setAction("com.android.launcher.action.UNINSTALL_SHORTCUT");
getApplicationContext().sendBroadcast(addIntent);
结果:图标未移除。
尝试完全按照launcher.db中显示的方式复制粘贴意图:
Intent intent = new Intent();
String oldShortcutUri = "#Intent;action=android.intent.action.MAIN;category=android.intent.category.LAUNCHER;launchFlags=0x10200000;package=gidutz.soft.bluecard;component=gidutz.soft.bluecard/.LoadingScreen;end";
try {
Intent altShortcutIntent = Intent.parseUri(oldShortcutUri,0);
intent.putExtra(Intent.EXTRA_SHORTCUT_INTENT, altShortcutIntent);
intent.putExtra(Intent.EXTRA_SHORTCUT_NAME, "Blue Card");
} catch (URISyntaxException e) {
}
intent.setAction("com.android.launcher.action.UNINSTALL_SHORTCUT");
getApplicationContext().sendBroadcast(intent);
结果:图标已移除!!
launcher.db
获取它。1)This guide at viralpatel.net
2)Google's implementation of UninstallShortcutReceiver.java
3)This thread at xdadevelopers
为了模拟和调试Google Play更新(保留旧的快捷方式),我执行了以下操作:
注1:回顾一下,使用从数据库获取的URI手动创建旧快捷方式可能更容易,而不是通过所有备份和强制停止考验。
注意2:我没有尝试使用此方法删除属于其他应用的图标,但它可能只是疯狂到可以工作。
答案 1 :(得分:10)
虽然Dev-iL和Funt的解决方案都得到了建议,但他们会这样做,直到Marshmallow。借助Android 6.0(具有Launcher v3),Google已经删除了UninstallShortcutReceiver,因为它存在安全问题(可能是因为它显而易见here)。所以不要指望它适用于Android 6.0。希望在将来的某个版本中,它将以一种或另一种形式进行读取。
PS:通常这应该是评论,但由于声誉,我不能发表评论......
答案 2 :(得分:4)
您需要shortcutIntent
的 setAction ,例如:
shortcutIntent.setAction(Intent.ACTION_MAIN);
答案 3 :(得分:3)
尝试使用
public void removeShortcut(Context context) {
Intent intent = new Intent();
intent.putExtra(Intent.EXTRA_SHORTCUT_NAME, "ShortcutTest");
try {
Intent shortcutIntent = Intent.parseUri(shortcutUri, 0);
intent.putExtra(Intent.EXTRA_SHORTCUT_INTENT, shortcutIntent);
} catch (URISyntaxException e) {
}
intent.setAction("com.android.launcher.action.UNINSTALL_SHORTCUT");
context.sendBroadcast(intent);
}
注意:您无需保存shortcutUri
即可删除快捷方式。相反,你可以使用
Intent shortcutIntent = new Intent();
shortcutIntent.setClassName("com.telespree.android.client",
"com.telespree.android.client.ShortcutTest");
shortcutIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
shortcutIntent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
Intent intent = new Intent();
try {
intent.putExtra(Intent.EXTRA_SHORTCUT_INTENT,
Intent.parseUri(shortcutIntent.toUri(0), 0));
} catch (URISyntaxException e) {
e.printStackTrace();
}
...
intent.setAction("com.android.launcher.action.UNINSTALL_SHORTCUT");
context.sendBroadcast(intent);
如果您想使用intent.putExtra(Intent.EXTRA_SHORTCUT_INTENT, shortcutIntent);
代替
intent.putExtra(Intent.EXTRA_SHORTCUT_INTENT,
Intent.parseUri(shortcutIntent.toUri(0), 0));
然后您需要每次都为shortcutIntent
设置操作,即在安装时以及卸载时Intent shortcutIntent = new Intent(Intent.ACTION_MAIN);
答案 4 :(得分:0)
我花了大约一个小时的调试时间并尝试了stackoverflow上的每个例子,但解决方案非常简单。您的代码中存在拼写错误:您需要使用com.android.launcher。操作 .UNINSTALL_SHORTCUT(与权限相反,而不是在Manifest中)
intent.setAction("com.android.launcher.action.UNINSTALL_SHORTCUT");
编辑:回答修正