Save data and change orientation

后端 未结 6 753
礼貌的吻别
礼貌的吻别 2020-11-27 23:16

I have two activities and I use android:configChanges=\"keyboardHidden|orientation|screenSize\"

 @Override
      public void onConfigurationChan         


        
6条回答
  •  情歌与酒
    2020-11-28 00:12

    If you have small data, you can save and restore it using onSavedInstanceState and onRestoreInstanceState .. for details go through this link Saving data

    But in case, you have large data then I must say, you should not allow for the orientation changes(which force your activity to recreate). You can restrict it by adding below line in manifest file :

    android:configChanges="orientation|keyboardHidden" // fixes orientation
    

提交回复
热议问题