赞
踩
设置横屏:1. 在AndroidManifest.xml文件中,在对应Activity标签中添加以下属性:
android:screenOrientation="landscape"
2. 通过代码设置横屏:
setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE);
设置竖屏:
1. 在AndroidManifest.xml文件中,在对应Activity标签中添加以下属性:
android:screenOrientation="portrait"
2. 通过代码设置竖屏:
setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_PORTRAIT);
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。