Android 应用程序在 Play 商店中的名称很长,但在 Dashboard 中的名称很短

Android application with a long name in the Play Store, but a short name on Dashboard

是否可以为 Android 应用程序指定一个长名称以显示在 Google Play 商店中,但在仪表板和菜单上显示一个短名称?

我想给我的应用起的名字是 "Visioenen van Bosch",这对于仪表板和菜单来说太长了。

Play商店名称是在发布过程中设置的,它与actionBar/Toolbar的标题名称或应用程序图标的名称无关。

values.xml 文件负责:

    <string name="app_name">Visionen</string>
    <string name="title_activity_<insert activity name>">Visionen</string>

第一个是应用程序图标/启动板名称,第二个是您要设置的任何自定义活动名称。

有关操作栏标题的更多信息:

actionbar title

material toolbar tutorial