- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在制作一个 Compass 应用程序,我发现 Sensor.TYPE_ORIENTATITON 已被弃用,我不知道如何修复它。是否有可能获得一些帮助。这是我的代码和我所做的。
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_compass);
//
// TextView that will tell the user what degree is he heading
tvHeading = (TextView) findViewById(R.id.tvHeading);
// initialize your android device sensor capabilities
mSensorManager = (SensorManager) getSystemService(SENSOR_SERVICE);
}
@Override
protected void onResume() {
super.onResume();
// for the system's orientation sensor registered listeners
mSensorManager.registerListener(this, **mSensorManager.getDefaultSensor(Sensor.TYPE_ORIENTATION),
SensorManager.SENSOR_DELAY_GAME);**
}
@Override
protected void onPause() {
super.onPause();
// to stop the listener and save battery
mSensorManager.unregisterListener(this);
}
@Override
public void onSensorChanged(SensorEvent event) {
// get the angle around the z-axis rotated
float degree = Math.round(event.values[0]);
tvHeading.setText("Heading: " + Float.toString(degree) + " degrees");
// create a rotation animation (reverse turn degree degrees)
RotateAnimation ra = new RotateAnimation(
currentDegree,
-degree,
Animation.RELATIVE_TO_SELF, 0.5f,
Animation.RELATIVE_TO_SELF,
0.5f);
// how long the animation will take place
ra.setDuration(210);
// set the animation after the end of the reservation status
ra.setFillAfter(true);
// Start the animation
image.startAnimation(ra);
currentDegree = -degree;
}
这个想法是,在代码执行后,它必须根据罗盘检测到的度数旋转图像。
最佳答案
关于java - Sensor.TYPE_ORIENTATION 已弃用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37932903/
我正在制作一个 Compass 应用程序,我发现 Sensor.TYPE_ORIENTATITON 已被弃用,我不知道如何修复它。是否有可能获得一些帮助。这是我的代码和我所做的。 @Override
我正在寻找一种解决方案来替代已弃用的 Android 传感器 Sensor.TYPE_ORIENTATION。 报告最多的解决方案是结合Sensor.TYPE_ACCELEROMETER 和Senso
我已经为 Rotation Vector 和 Orientation Vector 实现了监听器,虽然我知道它已经过时了,但我想同时测试这两个。 我知道 Rotation Vector 是一个融合传感
我需要根据从 Sensor.TYPE_ORIENTATION 获得的数据计算旋转矢量。 传感器数据定义如下: 必须重新计算值才能成为正确的 3d 位置:值 [0]:方位角,磁北方向与 Y 轴之间的角度
我正在用 android 开发一个应用程序。该应用程序在数据库中保存了一些引号,我想使用手机的传感器在屏幕上滑动引号。所以我希望当手机向左移动时,我可以在屏幕上看到下一个报价,当我将手机向右移动时,我
是否可以将 TYPE_ORIENTATION 的 android 传感器的三个值转换为旋转矩阵? 我知道这个传感器已被弃用,但我的设备没有ROTATION_VECTOR 也没有指南针,所以我只能使用
按照目前的情况,这个问题不适合我们的问答形式。我们希望答案得到事实、引用或专业知识的支持,但这个问题可能会引发辩论、争论、投票或扩展讨论。如果您觉得这个问题可以改进并可能重新打开,visit the
有 2 种方法可以获取 3 个旋转值(方位角、俯仰角、滚转角)。 一种是注册类型为 TYPE_ORIENTATION 的监听器。这是最简单的方法,我从每次旋转中得到正确的值范围,如文档所述: 方位角:
我正在做一些增强现实应用程序,我需要方位角来计算屏幕上的某个对象位置。我尝试使用 Sensor.TYPE_ORIENTATION 获取方向数据,由于它已被弃用,我尝试了 Sensor.TYPE_MAG
您好,我想使用类型 type_orientation 但它已被 android 4.0.3 弃用。我将它用于增强现实。我试图在网上找到但没有成功。我的应用程序有效,但我里面的文字留在同一个地方!这是我
我是一名优秀的程序员,十分优秀!