【发布时间】:2021-11-09 16:43:06
【问题描述】:
我尝试了各种方法来解决这个问题,但对我没有任何效果。 这是我在 AndroidManifest.xml 中有错误的地方:
android:label="cartoon_magic"
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">
Attribute android:icon is not allowed here
Unresolved class 'MainActivity'
Attribute android:launchMode is not allowed here
Attribute android:theme is not allowed here
Attribute android:configChanges is not allowed here
Attribute android:hardwareAccelerated is not allowed here
Attribute android:windowSoftInputMode is not allowed here
我猜是 import io.flutter.embedding.android.FlutterActivity 有问题,但我不知道如何解决。
这是我的 MainActivity.kt
package com.example.cartoon_magic
import io.flutter.embedding.android.FlutterActivity
class MainActivity: FlutterActivity() {
}
这是项目的结构:
我完全糊涂了,不知道从哪个方向寻找问题。感谢您的帮助!
【问题讨论】:
标签: android xml flutter mobile