从Play商店下载应用程序后,它不会在主屏幕上创建快捷方式图标(它会在应用程序抽屉中创建图标)。虽然这个东西在大多数设备上运行良好。但对于某些设备。应用程序不会创建快捷方式。
我查了一下:
a)标记了Play商店设置和自动添加小部件。
b)启动器设置自动为屏幕添加快捷方式是市场。
程序员端有什么东西吗?当我从Play商店下载应用程序时,我们可以编写一些会导致快捷方式的代码吗?
答案 0 :(得分:3)
程序员没有任何问题,确保您已选中添加图标主屏幕复选框, 在某些情况下,程序员可能已编写此代码
Intent shortcutIntent = new Intent(getApplicationContext(),MainActivity.class);
shortcutIntent.setAction(Intent.ACTION_MAIN);
Intent addIntent = new Intent();
addIntent.putExtra(Intent.EXTRA_SHORTCUT_INTENT, shortcutIntent);
addIntent.putExtra(Intent.EXTRA_SHORTCUT_NAME, "AppName");
addIntent.setAction("com.android.launcher.action.UNINSTALL_SHORTCUT");
getApplicationContext().sendBroadcast(addIntent);
即使在“添加图标到主屏幕”选中后,也要删除即将由Play商店创建的快捷方式。所以这个解决方案可以帮助你。
答案 1 :(得分:2)
我不认为这是来自应用程序的错误,更多的错误可能是设备错误。我会检查设备上的缓存,ROM设置等。
答案 2 :(得分:0)
对于较新版本的Android(至少对于Android 11而言),此选项已移。
years = seq(from = 2012, to = 2016)
ggplot(data = fruits, mapping = aes(x = years)) +
geom_line(aes(y = apples), color = "green")+
geom_line(aes(y = bananas), color = "yellow")+
geom_line(aes(y = apples), color = "indianred")
Home Settings
答案 3 :(得分:-4)
试试这个:
进入主屏幕,点击应用然后选项(右上角三个点)。
有“下载应用程序”进入,然后按住所需图标以在主屏幕上创建快捷方式。
希望它有效。