4
要鎖定應用中只有1個屏幕方向運行,我們可以在AndroidManifest.xml
做到這一點:在Android中只允許2個屏幕方向?
<activity
android:name="..."
android:screenOrientation="portrait"/>
的問題是,我剛剛發現我需要的應用程序也可旋轉,以reversePortrait
,第一件事我想的是:
<activity
android:name="..."
android:screenOrientation="portrait|reversePortrait"/>
但似乎android:screenOrientation
只允許值1。那麼我們還能如何做到這一點?
也照顧這個答案http://stackoverflow.com/questions/23153734/androidscreenorientation-sensorportrait-doesnt-work-on-api-17 –
按預期工作,謝謝! –