How to indicate the title of the icon on the main screen of the application?

I developed an Android calculator with Delphi XE5, and when I tested it on my Samsung Galaxy Advance (Android 2.3.0), I always see β€œProject1” as the file name. Here is the image:

here .

I want to change this name to "Risolutore Equazioni". How can i do this?

I changed the label to the manifest of the Android manifest, but nothing happened.

+3
source share
3 answers

you need to change it in the manifest (label), use the string resource. Since you said you already did this, try changing the string "application name" to the name you want.

Or, if it is ready to export as an APK and name it when exporting. What you will do to enter the market anyway.

check out android developer site here

+3
source

I fixed my problem by editing the label name in the project settings.

  • Project
  • Project Option
  • Version
  • Label
  • I changed the name I wanted
+3
source

You can rename the project by right-clicking on the project name int it Project Manager and selecting "Rename" from the context menu.

This will rename the project in Android (as shown in the screenshot above) and also rename the project files, including the .dproj and .dpr files. It will create a new .res file and also create .deployproj and AndroidManifest.template.xml files.

Do not use this option unless you intend to really rename the entire project.

+2
source

All Articles