1

我只是想记录加速度计数据并通过单击按钮在 sdcard 中写入文件。在我的 Nexus S(4.1.2)中运行该应用程序时,它会在一分钟后冻结。我尝试在 Galaxy Nexus 手机中运行它并且运行顺畅。由于某些原因,我必须在 Nexus S 中工作。任何人都可以建议我崩溃的原因。我试图查看日志,但它没有通过任何错误消息。

这是我的代码:

final SensorEventListener mySensorEventListener = new SensorEventListener() { 
    public void onSensorChanged(SensorEvent sensorEvent) {
        if (sensorEvent.sensor.getType() == Sensor.TYPE_ACCELEROMETER) {
            xAxis_lateralA = sensorEvent.values[0]; 
            yAxis_longitudinalA = sensorEvent.values[1]; 
            zAxis_verticalA = sensorEvent.values[2]; // TODO apply the acceleration changes to your application.
            textView.append("\nACC_x = "+ xAxis_lateralA + ", ACC_y = "+yAxis_longitudinalA+ ", ACC_z = " + zAxis_verticalA);

            acc += "\n"+miliSec()+", "+xAxis_lateralA + ", "+ yAxis_longitudinalA+", "+zAxis_verticalA;

            try {
                File myFile = new File("/sdcard/acc.txt");
                myFile.createNewFile();
                FileOutputStream fOut = new FileOutputStream(myFile);
                OutputStreamWriter myOutWriter = new OutputStreamWriter(fOut);
                myOutWriter.append(acc);
                myOutWriter.close();
                fOut.close();

            } catch (Exception e) {
                Toast.makeText(getBaseContext(), e.getMessage(), Toast.LENGTH_SHORT).show();
            }
        }
    }

    @Override
    public void onAccuracyChanged(Sensor sensor, int accuracy) {
        // TODO Auto-generated method stub

    }
};

startButton.setOnClickListener(new OnClickListener() {
    public void onClick(View v) {
        Toast.makeText(getBaseContext(),"Done writing SD 'acc.txt'",Toast.LENGTH_SHORT).show();
        sm = (SensorManager)getSystemService(Context.SENSOR_SERVICE); 
        int sensorType = Sensor.TYPE_ACCELEROMETER; 
        sm.registerListener(mySensorEventListener,sm.getDefaultSensor(sensorType), SensorManager.SENSOR_DELAY_NORMAL);

    }// onClick
}); // btnWriteSDFile 


stopButton = (Button) findViewById(R.id.stopButton);

stopButton.setOnClickListener(new OnClickListener() {

    public void onClick(View v) {

        int sensorType = Sensor.TYPE_ACCELEROMETER;
        sm.unregisterListener(mySensorEventListener, sm.getDefaultSensor(sensorType));
        Toast.makeText(getBaseContext(), "Stopped Recording",Toast.LENGTH_SHORT).show();
        finish();

    }// onClick
}); // btnstopButton
4

1 回答 1

1

问题是由于您将值写入文本文件的方式。

每次读取传感器时,您都在打开/写入/关闭文件。

即使对于 50Hz 的传感器读取频率,它也需要大量计算,以 50 次/秒的速度将这些写入文本效率不高。

使用BufferedWriter,它可以提供更好的性能。

于 2013-01-25T18:20:03.397 回答