我有我的应用程序,我已经更改了它的名称并且显示正确,但是当您在手机上看到打开的应用程序时,该应用程序没有名称,但是当您在应用程序列表中看到它的图标时,它显示正确,您将从图片中得到想法
\n在 5 种不同的设备上进行了测试
\n应用程序列表中的应用程序图标(正确显示)
\n\n查看打开的应用程序时的应用程序名称
\n\n我不知道为什么会发生这种情况,我将与您分享我的清单,请告诉我如何解决此问题
\n这是 AndroidManifest.xml
\n package="com.eco.cat">\n <!-- io.flutter.app.FlutterApplication is an android.app.Application that\n calls FlutterMain.startInitialization(this); in its onCreate method.\n In most cases you can leave this as-is, but you if you want to provide\n additional functionality it is fine to subclass or reimplement\n FlutterApplication and put your custom class here. -->\n <application\n android:name="io.flutter.app.FlutterApplication"\n android:label="EcoCat"\n android:icon="@mipmap/ic_launcher">\n <activity\n android:name=".MainActivity"\n android:launchMode="singleTop"\n android:theme="@style/LaunchTheme"\n android:configChanges="orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode"\n android:hardwareAccelerated="true"\n android:windowSoftInputMode="adjustResize">\n <intent-filter>\n <action android:name="android.intent.action.MAIN"/>\n <category android:name="android.intent.category.LAUNCHER"/>\n </intent-filter>\n </activity>\n …Run Code Online (Sandbox Code Playgroud)