Android 获取屏幕实时sensor角度
Posted 王睿丶
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android 获取屏幕实时sensor角度相关的知识,希望对你有一定的参考价值。
这种获取方式要比直接获取屏幕横竖屏状态稳定得多,因为如果手机之前是竖屏关闭自动旋转,横屏时,获取屏幕状态还是竖屏。sensor是真实的物理角度,实现方式如下:
public class MainActivity extends AppCompatActivity
OrientationEventListener mOrientationListener;
@Override
protected void onCreate(Bundle savedInstanceState)
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
/*ScreenOrientationListener listener = new ScreenOrientationListener(this);
listener.enable();*/
mOrientationListener = new OrientationEventListener(this,
SensorManager.SENSOR_DELAY_NORMAL)
@Override
public void onOrientationChanged(int orientation)
if (orientation == OrientationEventListener.ORIENTATION_UNKNOWN)
return; //手机平放时,检测不到有效的角度
//可以根据不同角度检测处理,这里只检测四个角度的改变
if (orientation > 350 || orientation < 10) //0度
orientation = 0;
else if (orientation > 80 && orientation < 100) //90度
orientation = 90;
else if (orientation > 170 && orientation < 190) //180度
orientation = 180;
else if (orientation > 260 && orientation < 280) //270度
orientation = 270;
else
return;
Log.d("wangrui","orientation = "+orientation);
;
if (mOrientationListener.canDetectOrientation())
mOrientationListener.enable();
else
mOrientationListener.disable();
以上是关于Android 获取屏幕实时sensor角度的主要内容,如果未能解决你的问题,请参考以下文章
Android 获取控件在整个屏幕的 X Y 及各个角度(LeftRightTopBottom)