android – 错误:字符串类型不允许(在’screenOrientation’,值为’sensorPortait’)

前端之家收集整理的这篇文章主要介绍了android – 错误:字符串类型不允许(在’screenOrientation’,值为’sensorPortait’)前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我导入了 android项目,我有3个错误
error: Error: String types not allowed (at 'screenOrientation' with value 'sensorPortait'). AndroidManifest.xml /com.cartmillimaging.fishingmate.MapViewActivity    line 16 Android AAPT Problem

相同的错误在不同的行.

<activity android:name=".MapViewActivity" android:screenOrientation="sensorPortait">

对于项目构建目标,我选择了Google API 2.3.3. 10.
我还启用了Java编译器项目的具体设置,并将编译器符合性错误提交到1.6.

我是Android开发的新手,所以可以帮我吗?

解决方法

检查您的API级别.以下属性

android:screenOrientation =“sensorPortrait”只能在API级别16上工作

android:screenOrientation =“sensorPortait”可以在15级以下工作

我认为这是一个固定的bug

原文链接:https://www.f2er.com/android/311935.html

猜你在找的Android相关文章