我刚刚完成了我的第一个 Android 应用程序并生成了一个 apk 文件以在我的手机上进行测试。然后我意识到我在制作项目时保留了默认的“我的应用程序”名称。因此该应用程序以“我的应用程序”的名称安装。如何更改应用名称?
答案 0 :(得分:1)
只需转到您的 values 属性,然后转到字符串,您就可以更改它。
<resources>
<string name="app_name">My application</string>
答案 1 :(得分:0)
转到 res -> values -> strings.xml
<resources>
<string name="app_name">My application</string> //change this text with desired text
</resources>