Android Studio 3.3
文件
error: unexpected element <view> found in <manifest>
Android资源链接失败:
…\app\build\intermediates\merged_manifests\debug\AndroidManifest.xml:
error: unexpected element <view> found in <manifest>
AndroidManifest.xml包含视图:
<view android:name=".ZAreaView"
android:screenOrientation="portrait"
android:theme="@style/Theme.Translucent">
</view>
无法构建和显示视图--android SDK 28.6<br>构建。gradle:classpath'com.android.tools.build:gradle:3.3.0'
我可以从清单中删除视图并进行编译,但视图不会显示。
成功构建和显示视图--android SDK 23.3
build.gradle: classpath'com.android.tools.build: gradle: 2.1.2'
从清单中删除视图.xml
<view android:name=".ZAreaView"
android:screenOrientation="portrait"
android:theme="@style/Theme.Translucent">
</view>
将ZareaView添加到vilpe89和Gabe Sechan推荐的新布局puzzle.xml
<com.modelsw.SixPuzzles.ZAreaView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:screenOrientation="portrait"
android:theme="@style/Theme.Translucent" />
添加到onCreate()下的java类拼图中
setContentView(R.layout.puzzle);
对com.modelsw.SixPuzzles.ZAreaView类进行充气时出错
修改拼图.xml从
com.modelsw.SixPuzzles.ZAreaView
到
View
样式错误
android:theme="@style/Theme.Translucent"
改为
android:theme="@style/Theme.AppCompat.Translucent"
布局拼图的最终配置.xml
<View
android:name=".ZAreaView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:screenOrientation="portrait"
android:theme="@style/Theme.AppCompat.Translucent" >
</View>
成功
也许样式错误是我得到inflating类错误的原因,但View works
我相信vilpe89和Gabe Sechan让我开始。
看起来您在AndroidManifest中使用了错误的元素。
声明活动的正确方法是使用Activity元素。
所以试试这个:
<activity
android:name=".ZAreaView"
android:screenOrientation="portrait"
android:theme="@style/Theme.Translucent">
</activity>
或者,如果您试图显示您创建的自定义视图(扩展视图),则将其添加到活动或片段的布局xml中:
<com.yourpackagename.ZAreaView
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
AndroidManifest.xml不允许在其中包含视图标记。
我假设您要显示包含此ZAreaView的活动,或者ZAreaView可能是该活动。在这种情况下,您要做的是将标记替换为标记
突然之间,我的Android项目出现了以下构建错误: 我该如何修复它?
突然,我的Android项目中出现了一个构建错误: 我怎么修好它?
突然,我在我的Android项目中遇到了这个构建错误: 我怎么修理它?
我在下面的代码中的Foreach循环中遇到错误,有人能帮我修复错误吗。。。
问题内容: 当我运行Ant构建时,它失败,但出现以下异常: 我正在使用Eclipse 3.4.2。 请让我知道我在这里想念的东西。 问题答案: 我可以通过在ant构建文件中放置所需元素的外部来重现此问题。该错误表明您的构建文件中存在错误- 错误的位置(某个元素)。 此版本引发该错误: 而这不是: 在完整的错误消息中,您应该获得一个行号,以引导您到达文件中需要注意的地方:
我正在设置一个PHP服务器,因为我编写了一些PHP代码:我打开XAMPP时,它说: 18:36:08[Apache]错误:Apache意外关闭。 18:36:08[Apache]这可能是由于端口阻塞、缺少依赖项、权限不当、崩溃或其他方法关闭。 18:36:08[Apache]如果您需要更多帮助,请复制并在论坛上发布整个日志窗口 18:36:23检测到[mysql]状态更改:已停止 18:36:23