1

Is it possible to give an Android application a long name to display in the Google Play Store, but display a short name on the dashboard & menu?

The name I want to give to my app is "Visioenen van Bosch", which is too long for the dashboard and the menu.

Bart Burg
  • 4,786
  • 7
  • 52
  • 87

1 Answers1

3

The play store name is set during the publish process, and it has nothing to do with the actionBar's / Toolbar's title name, or name of the app's icon.

The values.xml file takes care of that :

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

The first is the app icon / launchpad name, and the second, any of your custom acitivity names you want to set.

For more information on actionbar title:

actionbar title

material toolbar tutorial

Community
  • 1
  • 1
CptEric
  • 897
  • 9
  • 23