gpt4 book ai didi

android - 如何设置与应用程序快捷方式android名称不同的应用程序名称

转载 作者:行者123 更新时间:2023-11-29 00:04:23 25 4
gpt4 key购买 nike

我有一个 Android 应用程序,我想将应用程序快捷方式名称设置为“Title1”,其他地方(例如在主页或应用程序屏幕内)的应用程序名称应为“Title2”。我怎样才能做到这一点?有什么例子吗?

最佳答案

private void addShortcut() { 
//Adding shortcut for MainActivity on Home screen
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, this.getResources().getString(R.string.app_name));
addIntent.putExtra(Intent.EXTRA_SHORTCUT_ICON_RESOURCE,Intent.ShortcutIconResource.fromContext(getApplicationContext(),
R.drawable.ic_launcher));

addIntent.setAction("com.android.launcher.action.INSTALL_SHORTCUT");
getApplicationContext().sendBroadcast(addIntent);
}

创建快捷方式时更改字符串值“app_name”。它将精确地更改应用程序快捷方式名称。

关于android - 如何设置与应用程序快捷方式android名称不同的应用程序名称,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35018448/

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