解決Android手機 螢幕橫豎屏切換,android手機

來源:互聯網
上載者:User

解決Android手機 螢幕橫豎屏切換,android手機

Android中當螢幕橫豎屏切換時,Activity的生命週期是重新載入(說明當前的Activity給銷毀了,但又重新執行載入),
怎麼使螢幕橫豎屏切換時,當前的Activity不銷毀呢?


1. 在AndroidManifest.xml中為Activity設定configChanges屬性,

application android:icon="@drawable/icon" android:label="@string/app_name"><activity android:name=".MainActivity"    android:label="@string/app_name"     android:configChanges="orientation|keyboardHidden">    <intent-filter>        <action android:name="android.intent.action.MAIN" />        <category android:name="android.intent.category.LAUNCHER" />    </intent-filter></activity></application>        

configChanges有如下選項: 
1. orientation :螢幕在縱向和橫向間旋轉,  2. keyboardHidden:鍵盤顯示或隱藏 ,3.fontScale:使用者變更了首選的字型大小   4.locale : 使用者選擇了不同的語言設定,5.  keyboard :鍵盤類型變更,例如手機從12鍵盤切換到全鍵盤   6. touchscreen或navigation:鍵盤或導航方式變化,

如果缺少了keyboardHidden選項 不能防止Activity的銷毀,並且在之後提到的onConfigurationChanged事件中 只能捕獲豎屏變橫屏的事件 不能捕獲橫屏變豎屏 

 

2. 在對應的Activity中重寫:onConfigurationChanged 方法: 

public class MainActivity extends Activity {    private TextView textView;    @Override    public void onCreate(Bundle savedInstanceState) {        super.onCreate(savedInstanceState);        setContentView(R.layout.main);        Log.i("--Main--", "onCreate");        textView=(TextView)findViewById(R.id.tv_id);    }            @Override    public void onConfigurationChanged(Configuration newConfig) {        super.onConfigurationChanged(newConfig);        Log.i("--Main--", "onConfigurationChanged");        if(newConfig.orientation==Configuration.ORIENTATION_LANDSCAPE){            textView.setText("當前螢幕為橫屏");        }else{            textView.setText("當前螢幕為豎屏");        }    }    }

效果如下:

     

日誌列印:

  

從日誌中可以分析出螢幕橫豎屏切換時Activity並沒有銷毀,當然你也可以運行項目在onCreate方法打個斷點,執行發現onCreate方法只是在剛開始進入時執行,螢幕橫豎屏切換時,已經不會在執行,因此可在onConfigurationChanged方法中下點文章!

註:如果項目不需要螢幕切換時可以設定為

1. android:screenOrientation="portrait" 始終以豎屏顯示 
2. android:screenOrientation="landscape" 始終以橫屏顯示

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.