1、横竖屏转换的时候不要重新跑onCreate方法,这个可以在manifest.xml的对应activity中增加这个属性:“android:configChanges="orientation|screenSize"”;
2、禁止横竖屏转换,在manifest.xml的对应activity中增加这个属性“android:screenOrientation="landscape"”或者“android:screenOrientation="portrait"”。
转载:http://www.cnblogs.com/mlzs/p/4091675.html