鎖定螢幕方向

如果你想鎖定 Android 應用程式的任何螢幕(活動)的螢幕方向更改,你只需要在 AndroidManifest.xml 中設定 <activity>android:screenOrientation 屬性 :

<activity
    android:name="com.techblogon.screenorientationexample.MainActivity"
    android:screenOrientation="portrait"
    android:label="@string/app_name" >
    <!-- ... -->
</activity>

現在該活動被強制始終以縱向模式顯示。