android 横竖屏切换 简记
横竖屏切换,不重新加载
1、activity声明android:configChanges="orientation|keyboardHidden|screenSize"
Up to API 13 there was a new value to the configChanges attribute, screenSize
So if you‘re using large screens make sure to add screenSize in your configChanges attribute:
android:configChanges="orientation|keyboardHidden|screenSize"
2、Activity重写onConfigurationChanged:
public
void onConfigurationChanged(Configuration newConfig) {
super.onConfigurationChanged(newConfig); }
--------------------------------------------------------------------------------------------
代码切换横竖屏
setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE);
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。