[学习记录]旋转屏幕禁止重新调用oncreat

在Manifest中对应的Activity设置android:configChanges="orientation"就可以了,

但从API等级13开始还要再加一个"screenSize"才可以,即:android:configChanges="orientation|screenSize",至于在java代码中的onConfigurationChanged方法是没有要求一定要重载的,如果纯粹为了禁止onDestroy() -> onCreate()仅需要添加一句android:configChanges="orientation|screenSize"就可以了


你可能感兴趣的:([学习记录]旋转屏幕禁止重新调用oncreat)