[flutter应用程序名称在看到打开的应用程序时不会显示

问题描述 投票:0回答:1

我有我的应用程序,我已经更改了名称并正确显示了它,但是当您在手机上看到打开的应用程序时,该应用程序没有名称,但是当您在应用程序列表中看到其图标正确显示时,您会从中获得灵感图片

在5种不同的设备上测试过

应用列表中的应用图标(正确显示)

enter image description here

查看打开的应用程序时的应用程序名称

enter image description here

我不知道为什么会这样,我将与您分享我的清单,请告诉我如何解决此问题

    package="com.eco.cat">
    <!-- io.flutter.app.FlutterApplication is an android.app.Application that
         calls FlutterMain.startInitialization(this); in its onCreate method.
         In most cases you can leave this as-is, but you if you want to provide
         additional functionality it is fine to subclass or reimplement
         FlutterApplication and put your custom class here. -->
    <application
        android:name="io.flutter.app.FlutterApplication"
        android:label="EcoCat"
        android:icon="@mipmap/ic_launcher">
        <activity
            android:name=".MainActivity"
            android:launchMode="singleTop"
            android:theme="@style/LaunchTheme"
            android:configChanges="orientation|keyboardHidden|keyboard|screenSize|smallestScreenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode"
            android:hardwareAccelerated="true"
            android:windowSoftInputMode="adjustResize">
            <intent-filter>
                <action android:name="android.intent.action.MAIN"/>
                <category android:name="android.intent.category.LAUNCHER"/>
            </intent-filter>
        </activity>
        <!-- Don't delete the meta-data below.
             This is used by the Flutter tool to generate GeneratedPluginRegistrant.java -->
        <meta-data
            android:name="flutterEmbedding"
            android:value="2" />
    </application>
    <uses-permission android:name="android.permission.INTERNET"/>
</manifest>

预先感谢

flutter build production
1个回答
0
投票

使用MaterialApp并为其设置标题。

© www.soinside.com 2019 - 2024. All rights reserved.