📅  最后修改于: 2023-12-03 15:29:21.171000             🧑  作者: Mango
有时候,我们需要更改 Android 应用的名称,可以是应用程序标签或者应用程序的标题栏文本。在这篇文章中,我们将介绍 Android Studio 中如何更改应用名称。
AndroidManifest.xml
文件。<application>
标签。<application>
标签中添加 android:label
属性。android:label
属性中,将原始应用名称替换为新的应用名称。<application
android:name=".MyApplication"
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="新的应用名称"
android:roundIcon="@mipmap/ic_launcher_round"
android:theme="@style/AppTheme">
<activity .....>
......
</activity>
......
</application>
res/values/strings.xml
文件。app_name
的字符串资源。<resources>
<string name="app_name">新的应用名称</string>
......
</resources>
app/build.gradle
文件。defaultConfig
块。defaultConfig
块中添加 applicationId
属性。defaultConfig
块中添加 versionCode
和 versionName
属性。defaultConfig {
.........
applicationId "com.example.myapplication"
versionCode 1
versionName "1.0"
.........
}
resValue
块。resValue
块中添加 string
数据类型。string
数据类型中添加 app_name
属性,然后将新的应用名称设置为该属性的值。android {
.........
defaultConfig {
.........
resValue "string", "app_name", "新的应用名称"
.........
}
}
至此,三种方法均介绍完了,我们可以根据具体情况选择一种方法来更改应用名称。
以上就是 Android Studio 更改应用名称的方法。希望对您有所帮助!