adjusting sensitivity of rotating by Device Rotation
This commit is contained in:
parent
e06c65163a
commit
1a3d52e1c2
1 changed files with 2 additions and 2 deletions
|
@ -218,8 +218,8 @@ class ViewPagerActivity : SimpleActivity(), ViewPager.OnPageChangeListener, View
|
|||
mOrientationEventListener = object : OrientationEventListener(this, SensorManager.SENSOR_DELAY_NORMAL) {
|
||||
override fun onOrientationChanged(orientation: Int) {
|
||||
val currOrient = when (orientation) {
|
||||
in 75..134 -> ORIENT_LANDSCAPE_RIGHT
|
||||
in 225..289 -> ORIENT_LANDSCAPE_LEFT
|
||||
in 60..134 -> ORIENT_LANDSCAPE_RIGHT
|
||||
in 225..299 -> ORIENT_LANDSCAPE_LEFT
|
||||
else -> ORIENT_PORTRAIT
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue