本文介绍了如何在onSensorChange方法+加速度计中设置文本的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

提前致谢.

我正在使用加速度计开发游戏应用程序.但我遇到了一个问题,当我在加速度计的onSensorChange"方法中更新文本视图时,应用程序不执行不错.

I m working in game application using accelerometer. but i've facing a problem,when i update textview in "onSensorChange" method of accelerometer.application not performgood.

我的代码是这样的.

int nCounter = 0;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
    setContentView(R.layout.main);


    mTV_CountTextView = (Textview)findViewById(R.id.TextView);
}

..........

public void onSensorChanged(SensorEvent sensorEvent) {
    {
        if (sensorEvent.sensor.getType() == Sensor.TYPE_ORIENTATION) {
            // Set sensor values as acceleration
            yAcceleration = sensorEvent.values[1];
            xAcceleration = sensorEvent.values[2];

                            nCounter++;
                             mTV_CountTextView.settext(""+nCounter);
        }
    }
}

推荐答案

试试这个..

mTV_CountTextView.settext(""+String.valueOf(nCounter));

可能是您在 settext 中使用了 Integer 所以您遇到了错误..

may be your are using Integer for settext so you are getting error..

这篇关于如何在onSensorChange方法+加速度计中设置文本的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-01 18:06