Flutter-如何根据手机的语言更改应用程序的名称

时间:2020-03-04 20:13:45

标签: android flutter

我想根据用户设备的语言更改应用程序的名称。

我知道应用程序的名称位于AndroidManifest.xml

<application
        android:name="io.flutter.app.FlutterApplication"
        android:label="Flutter_app_name"
        android:icon="@mipmap/ic_launcher">

但是我不知道如何动态更改android:label

你能帮我吗?谢谢!

1 个答案:

答案 0 :(得分:0)

只需在每个strings.xml语言环境文件中保留一个引用,如下所示:

<string name="app_name">My Application</string>

并在您的AndroidManifest.xml应用程序部分中使用它:

android:label="@string/app_name"