歡迎來到Linux教程網
Linux教程網
Linux教程網
Linux教程網
您现在的位置: Linux教程網 >> UnixLinux >  >> Linux編程 >> Linux編程

Android禁止橫豎屏切換

在Android中要讓一個程序的界面不隨手機方向轉動而產生橫豎屏切換的方法: 只要在AndroidManifest.xml裡面配置就可以了。在AndroidManifest.xml的activity配置中加入android:screenOrientation=”landscape”屬性即可(landscape是橫向,portrait是縱向)。

需要注意的是,android中每次屏幕方向切換時都會重啟Activity,所以我們應該在Activity被銷毀前保存當前活動的狀態,在Activity再次Create的時候載入配置,那樣,進行中的游戲就不會自動重啟了!要避免在轉屏時重啟activity,可以通過在androidmanifest.xml文件中重新定義方向,添加activity屬性  android:configChanges=”keyboardHidden|orientation”即可。

<?xml version="1.0" encoding="utf-8"?>

<manifest xmlns:android="http://schemas.android.com/apk/res/android"

    package="com.boby.fanggezi"

    android:versionCode="1"

    android:versionName="1.0" >

 


    <uses-sdk

        android:minSdkVersion="7"

        android:targetSdkVersion="19" />


    <application

        android:allowBackup="true"

        android:icon="@drawable/ic_launcher"

        android:label="@string/app_name"

        android:theme="@style/AppTheme" >

        <activity

            android:name="com.boby.FanggeziActivity"

            android:screenOrientation="portrait"

            android:label="@string/app_name" >

            <intent-filter>

                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />

            </intent-filter>

        </activity>

    </application>

</manifest>

更多Android相關信息見Android 專題頁面 http://www.linuxidc.com/topicnews.aspx?tid=11

Copyright © Linux教程網 All Rights Reserved