首页 > 代码库 > android 横竖屏切换 简记
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);
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。