activity的橫屏和豎屏設定,activity

來源:互聯網
上載者:User

activity的橫屏和豎屏設定,activity

主要在資訊清單檔這樣配置:


 1 <application 2         android:allowBackup="true" 3         android:icon="@drawable/ic_launcher" 4         android:label="@string/app_name" 5         android:theme="@style/AppTheme" > 6         <activity 7             android:screenOrientation="landscape"//說明它是橫屏,也可以設定為豎屏 8             android:name="com.example.lifecycle.MainActivity" 9             android:label="@string/app_name" >10             <intent-filter>11                 <action android:name="android.intent.action.MAIN" />12 13                 <category android:name="android.intent.category.LAUNCHER" />14             </intent-filter>15         </activity>16     </application>

2、那麼如何讓螢幕橫屏或者豎屏時對activity沒有影響呢?應當這樣配置:

 1 <application 2         android:allowBackup="true" 3         android:icon="@drawable/ic_launcher" 4         android:label="@string/app_name" 5         android:theme="@style/AppTheme" > 6         <activity 7             android:configChanges="orientation|keyboardHidden|screenSize" 8             android:name="com.example.lifecycle.MainActivity" 9             android:label="@string/app_name" >10             <intent-filter>11                 <action android:name="android.intent.action.MAIN" />12 13                 <category android:name="android.intent.category.LAUNCHER" />14             </intent-filter>15         </activity>16     </application>
orientation:說明螢幕變化;keyboardHidden:說的按鍵變化;screenSize:說的是螢幕尺寸變化;它們的變化對activity沒有影響

3、為什麼要設定android:configChanges="orientation|keyboardHidden|screenSize"它們?因為螢幕切換時會銷毀activity對象,然後重新建立,這樣設定後就不會
 

 

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.