本文介紹了清單中完全傳感器的屏幕方向出現(xiàn)錯(cuò)誤的處理方法,對(duì)大家解決問(wèn)題具有一定的參考價(jià)值,需要的朋友們下面隨著小編來(lái)一起學(xué)習(xí)吧!
問(wèn)題描述
我正試圖在一個(gè)項(xiàng)目上工作,將在4個(gè)方向工作。我將它設(shè)置為AndroidManifest.xml
android:screenOrientation="sensor"
,它可以工作,但它只進(jìn)行3個(gè)方向。因此,我將其設(shè)置為4個(gè)方向的android:screenOrientation="fullSensor"
。很遺憾,我收到此錯(cuò)誤
error: Error: String types not allowed (at 'screenOrientation' with value
'fullSensor').
有人知道如何使用它嗎?
推薦答案
僅支持9級(jí)以上的完整傳感器。
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。
這篇關(guān)于清單中完全傳感器的屏幕方向出現(xiàn)錯(cuò)誤的文章就介紹到這了,希望我們推薦的答案對(duì)大家有所幫助,