gpt4 book ai didi

android - 在 android 的主屏幕上创建应用程序快捷方式时如何防止自动显示 toast 消息我不想要消息

转载 作者:行者123 更新时间:2023-11-29 21:50:35 25 4
gpt4 key购买 nike

     Intent shortcutIntent = new Intent(getApplicationContext(),    HomeScreen.class);      
shortcutIntent.setAction(Intent.ACTION_MAIN);

Intent addIntent = new Intent();
addIntent.putExtra(Intent.EXTRA_SHORTCUT_INTENT, shortcutIntent);
addIntent.putExtra(Intent.EXTRA_SHORTCUT_NAME, "AIMS ICD");
addIntent.putExtra(Intent.EXTRA_SHORTCUT_ICON_RESOURCE,Intent.ShortcutIconResource.fromContext(getApplicationContext(), R.drawable.aims));
addIntent.putExtra("duplicate", false);
addIntent.setAction("com.android.launcher.action.INSTALL_SHORTCUT");
getApplicationContext().sendBroadcast(addIntent);

此代码工作正常但在创建快捷方式后显示消息“已创建快捷方式 AIMS ICD”我不想要此消息

最佳答案

抱歉,没有办法阻止默认系统 Toast 出现(来源:Dianne, Google Employee)

关于android - 在 android 的主屏幕上创建应用程序快捷方式时如何防止自动显示 toast 消息我不想要消息,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14499747/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com