android UI在陀螺仪事件中反应奇怪

时间:2013-07-01 04:35:22

标签: android gyroscope

我有一个使用陀螺仪来控制填充值的应用程序。但是,除非我正在触摸或移动设备屏幕,否则它不会更新UI。

private void GyroFunction(SensorEvent event) {
    SensorManager
            .getRotationMatrixFromVector(mRotationMatrix, event.values);
    SensorManager.remapCoordinateSystem(mRotationMatrix,
            SensorManager.AXIS_X, SensorManager.AXIS_Z, mRotationMatrix);
    SensorManager.getOrientation(mRotationMatrix, orientationVals);

    // I must put this line of code to make the UI thread update every time 
    tempTxtView.setText(String.valueOf(orientationVals[2]));

    imgv.setPadding((int) Math.round(orientationVals[0]),
            (int) Math.round(orientationVals[1]),
            (int) Math.round(orientationVals[0]),
            (int) Math.round(orientationVals[1]));
}

然而,当我添加一个根据陀螺仪事件更新值的临时textView时,它可以工作。但我不认为这是一个解决方案,因为它会阻止屏幕。还有其他解决方案吗?

1 个答案:

答案 0 :(得分:1)

在设置填充后调用imgv.invalidate()吗?