返回列表 發帖

Android App - 防止畫面旋轉

防止畫面旋轉, 只要在 AndroidManifest.xml 檔案內加入 android:screenOrientation="portrait" 即可。

例如
  1. <activity
  2.             android:name=".MacActivity"
  3.             android:screenOrientation="portrait"`
  4.             android:label="@string/app_name" >
  5.             <intent-filter>
  6.                 <action android:name="android.intent.action.MAIN" />


  7.                 <category android:name="android.intent.category.LAUNCHER" />
  8.             </intent-filter>
  9.         </activity>
複製代碼




AndroidManifest.xml 內有多於一個 Activity, 哪一個不想旋轉, 可以把 android:screenOrientation="portrait"  寫入相關的 Activity 內
Bill Tang     MSN:billtang@openplatform.com.hk
Openplatform Technology Co.,Ltd. 資訊坊科技有限公司  
無線工程施工、方案設計、無線產品、天饋材料、終端設備綜合供應商
Tel: 852-27491011  Fax: 852-81483532

返回列表