參考資料1:phonegap -android横竖屏锁定
參考資料2:通過XML設置屏幕方向(android:screenOrientation)
如題,可能你會想說我想將App設定成,依照使用者手機旋轉的方向而定,那如何設定?
你只需要在AndroidManifest.xml檔中加入以下兩行設定,如下(紅色字體):
<activity
android:name="com.test"
android:screenOrientation="sensor"
android:configChanges="orientation|keyboardHidden|screenSize"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
如果你的android版本比較高(Android Level>=13),就必須再加上screenSize
沒有留言:
張貼留言