- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
OrientationEventListener.onOrientationChanged报告的学位之间有什么关系?和 WindowManager().getDefaultDisplay().getRotation 报告的显示旋转.
这两个都以度数返回设备的方向。这些值(value)观之间有什么关系,应该如何解读它们?
最佳答案
所以我做了一些挖掘并编写了一个辅助类,如下所示,它可以是 Activity 中的嵌套类。 OrientationEventListener 监听 changes in the Accelerometer data .如果您以自然方向(纵向/垂直)握持手机,则方向为 0。顺时针方向旋转手机时方向逐渐增加。所以当左侧在上面(横向)时,方向是 90。当手机倒置时,它是 180。当右侧向上时,它是 270。
虽然 getRotation() 是屏幕从其“自然”方向的旋转。根据文档,角度是屏幕上绘制图形的旋转,与设备的物理旋转方向相反
。因此,当手机处于纵向模式/自然方向时,旋转和方向均为 0。如果左侧在顶部,则方向为 90,但旋转为 270,因为绘制的图形与方向相反设备旋转。同样,如果右侧在顶部,则方向为 270,旋转为 90。有趣的情况:手机倒置 - 方向为 180,但旋转仍然为 0。如果在电话时不重绘图形旋转,则 Display.getRotation() 保持不变。从下面的代码也可以验证这一点。我只在发生变化时打印旋转和方向,并且方向已量化为 0、90、180、270 的 4 个值。
static final class CustomOrientationListener extends OrientationEventListener {
private static final String TAG = CustomOrientationListener.class.getSimpleName();
private int savedOrientation = Integer.MIN_VALUE;
private int savedRotation = Integer.MIN_VALUE;
AppCompatActivity activity;
public CustomOrientationListener(AppCompatActivity a) {
super(a);
activity = a;
}
/**
* Called when the orientation of the device has changed.
* orientation parameter is in degrees, ranging from 0 to 359.
* orientation is 0 degrees when the device is oriented in its natural position,
* 90 degrees when its left side is at the top, 180 degrees when it is upside down,
* and 270 degrees when its right side is to the top.
*/
@Override
public void onOrientationChanged(int orientation) {
orientation = normalizeOrientation(orientation);
if (savedOrientation != orientation) {
Log.i(TAG, "orientation: " + orientation);
savedOrientation = orientation;
}
int rotation = getRotationInDegrees(activity.getWindowManager().getDefaultDisplay().getRotation());
if (rotation != savedRotation) {
Log.i(TAG, "rotation: " + rotation);
savedRotation = rotation;
}
}
/**
* getRotation() Returns the rotation of the screen from its "natural" orientation. The returned value may be
* Surface.ROTATION_0 (no rotation), Surface.ROTATION_90, Surface.ROTATION_180, or Surface.ROTATION_270.
* For example, if a device has a naturally tall screen, and the user has turned it on its side to go into a
* landscape orientation, the value returned here may be either Surface.ROTATION_90 or Surface.ROTATION_270
* depending on the direction it was turned. The angle is the rotation of the drawn graphics on the screen,
* which is the opposite direction of the physical rotation of the device. For example, if the device is rotated
* 90 degrees counter-clockwise, to compensate rendering will be rotated by 90 degrees clockwise and thus the
* returned value here will be Surface.ROTATION_90.
*/
private static int getRotationInDegrees(int rotation) {
int degrees = 0;
switch (rotation) {
case Surface.ROTATION_0:
degrees = 0;
break;
case Surface.ROTATION_90:
degrees = 90;
break;
case Surface.ROTATION_180:
degrees = 180;
break;
case Surface.ROTATION_270:
degrees = 270;
break;
}
return degrees;
}
private static int normalizeOrientation(int degrees) {
if (degrees > 315 || degrees <= 45) {
return 0;
}
if (degrees > 45 && degrees <= 135) {
return 90;
}
if (degrees > 135 && degrees <= 225) {
return 180;
}
if (degrees > 225 && degrees <= 315) {
return 270;
}
throw new RuntimeException("The physics as we know them are no more. Watch out for anomalies.");
}
}
关于android - OrientationEventListener 与 Display.getRotation,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45783793/
除了 Display.getOrientation() 已弃用之外,Display.getRotation() 和 Display.getOrientation() 之间还有什么区别? 是否都返回等于
我的问题 这些方法中有哪一种是专业网页设计师所偏爱的吗? Web 浏览器在绘制网站时是否首选这些方法中的任何一种? 这只是个人喜好吗? 我还缺少其他技巧吗? 注意:以上问题是关于设计多列布局 floa
我的问题 专业网页设计师是否喜欢这些方法? 网页浏览器在绘制网站时是否首选这些方法? 这只是个人喜好吗? 我还缺少其他技术吗? 注意:以上问题与设计多列布局有关 float :左; http://js
我有一些代码返回 MyTrait 类型的特征对象,这样它就可以返回几个不同结构之一。我想为 trait 对象实现 Display trait,这样我就可以打印对象,并将详细信息委托(delegate)
package polymorphism; /* * @author Rahul Tripathi */ public class OverLoadingTest { /** *
我希望 Display.timerExec(int,Runnable)与 Display.asyncExec(Runnable) 大致相同但有指定的延迟。然而,似乎Display.timerExec只
就像标题所暗示的,有什么区别吗?我当时使用的是pygame.display.flip,我在互联网上看到的是,他们使用pygame.display.update而不是使用flip。哪一个更快? 最佳答案
Sample.this.display() 和 this.display() 哪个更好? class Sample{ void display(){ System.out.println("d
当图像的 CSS 属性“显示”已被任何其他 JS 脚本/函数更改时,我想运行一些 JS 代码。有什么方法可以监视该更改并设置回调函数吗? $(this).bind.('propertychange',
在浏览 Google 字体时我注意到第一个过滤器包含这些类别: Serif Sans 衬线 展示 手写 我知道什么是 (Sans)Serif 和 Handwriting 类别(这很明显)但是显示类别过
我想知道是否可以在列标记内渲染自定义 html,这是显示表标记的一部分。 例如,我希望我的专栏里面有一些下拉列表? 使用纯 html,如下所示: ... Volvo Saab Me
display.newImage() 和 display.newImageRect() 有什么区别? 哪个更好用? 最佳答案 display.newImage() 的文档具体提到: NOTE: dis
我正在使用纯 JS 和 flexbox 为我的元素创建网格。 元素的某些部分在页面加载时被显示隐藏:无,但单击按钮后它应该在不显示和阻止之间切换。 可悲的是,这完全破坏了 display: flex
我目前正在参加 HTML/CSS 类(class),这本书推荐我使用.desktop {display:none;}/.mobile {display:inline;} 以及div class="de
这个问题在这里已经有了答案: Css transition from display none to display block, navigation with subnav [duplicat
我理解 style="display: none" 隐藏一个 HTML 元素,而 style="display: block" 显示一个 block 级 HTML 元素。 我看到一些使用 style=
设置控件的样式 display: none 和 display: block 有什么区别? 最佳答案 display 属性定义了某个 HTML 元素应该如何显示。 Display block 和 no
这个问题已经有答案了: Javascript AND operator within assignment (7 个回答) 已关闭 4 年前。 假设我只想在 this.state.display 为
我不确定如何命名这个问题,因为我是 Rust 新手,所以请随意提出修改建议。 我有两个结构。一个是 Job 结构,其中包含一些数字,例如作业需要多长时间等。另一个是 JobSequence,其中包含
我不确定如何命名这个问题,因为我是 Rust 新手,所以请随意提出修改建议。 我有两个结构。一个是 Job 结构,其中包含一些数字,例如作业需要多长时间等。另一个是 JobSequence,其中包含
我是一名优秀的程序员,十分优秀!