Android 屏幕旋转(一):旋转设置

在Android开发过程中通常会涉及屏幕旋转。通常是由物理重力感应触发的,但是有时候也不尽然,通常在设置里面我们可以对手机的横竖屏切换进行关闭,有时候通过点击按键来触发屏幕的旋转。在这里总结屏幕旋转的方式。
1、固定手机横竖屏
   (1)通过在AndroidManifest.xml文件中,对应的activity中加上android:screenOrientation属性属性:
       android:screenOrientation="unspecified"://默认值 由系统来判断显示方向.判定的策略是和设备相关的,所以不同的设备会有不同的显示方向. 
       android:screenOrientation="landscape"://横屏显示(宽比高要长) 
       android:screenOrientation="portrait"://竖屏显示(高比宽要长) 
       android:screenOrientation= "user"://用户当前首选的方向 
       android:screenOrientation="behind"://和该Activity下面的那个Activity的方向一致(在Activity堆栈中的) 
       android:screenOrientation="sensor"://有物理的感应器来决定。如果用户旋转设备这屏幕会横竖屏切换。 
       android:screenOrientation="nosensor"://忽略物理感应器,这样就不会随着用户旋转设备而更改了("unspecified"设置除外)。 
   (2)代码中动态设置,注意语句一定要在setContentView()方法之前.
       setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED);//默认设置
       setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE);//横屏设置
       setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_PORTRAIT);//竖屏设置

你可能感兴趣的:(Android基础,android,android开发,手机)