本文介紹了清單中完全傳感器的屏幕方向出現錯誤的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學習吧!
問題描述
我正試圖在一個項目上工作,將在4個方向工作。我將它設置為AndroidManifest.xml
android:screenOrientation="sensor"
,它可以工作,但它只進行3個方向。因此,我將其設置為4個方向的android:screenOrientation="fullSensor"
。很遺憾,我收到此錯誤
error: Error: String types not allowed (at 'screenOrientation' with value
'fullSensor').
有人知道如何使用它嗎?
推薦答案
僅支持9級以上的完整傳感器。
The orientation is determined by the device orientation sensor for any of the 4 orientations. This is similar to "sensor" except this allows any of the 4 possible screen orientations, regardless of what the device will normally do (for example, some devices won't normally use reverse portrait or reverse landscape, but this enables those). Added in API level 9.
參考http://developer.android.com/guide/topics/manifest/activity-element.html。
這篇關于清單中完全傳感器的屏幕方向出現錯誤的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,