最近开始学习并接手Android项目的开发,很多地方还不太熟悉,故,将开发过程中遇到的一些问题以及解决办法整理记录下了,供后期查询。
由于很多时候为了界面显示美观,会关闭屏幕横纵向切换,固定为某种显示方式,下面整理了屏幕设定为横向显示的步骤:
1、设置模拟器显示方式为横向:
Ctrl+F11 或Ctrl+F12
2、设置屏幕显示横向方法:
在AndroidManifest.xml文件中,在<activity></activity>中增加属性 android:screenOrientation="landscape"即可,具体描述如下:
<activity android:name="MainActivity"
android:label="@string/app_name"
android:screenOrientation="landscape">
......
</activity>
备注:
screenOrientation的值有以下几种:
landscape:横向
portrait:纵向
unspecified:默认值,由系统判断状态自动切换
user:用户当前设置的orientation值.
behind:下一个要显示的Activity的orientation值.
sensor:传感器的方向
nosensor:不使用传感器,这个效果差不多等于unspecified