Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have one activity for reading values of orientation, accelerometr, gravity and magnetic field:

public class MainActivity extends Activity {

public Button myButton;
public TextView textView;
public SensorManager mSensorManager;
TextView xViewA = null;
(...)

@Override
public void onCreate(Bundle savedInstanceState) {

    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    myButton = (Button) findViewById(R.id.Button01);
    textView = (TextView) findViewById(R.id.TextView01);

    mSensorManager = (SensorManager) getSystemService(SENSOR_SERVICE);

    yViewA = (TextView) findViewById(R.id.ybox);
    (...)  

}

private final SensorEventListener l1 = new SensorEventListener() {

        public void onSensorChanged(SensorEvent event) {
            // TODO Auto-generated method stub
            synchronized (this) {
            if (event.sensor.getType()  == SensorManager.SENSOR_ORIENTATION) {
                float[] values = event.values;
                xViewO.setText("Orientation X: " + values[0]);
                yViewO.setText("Orientation Y: " + values[1]);
                zViewO.setText("Orientation Z: " + values[2]);
            }

            if (event.sensor.getType() == SensorManager.SENSOR_ACCELEROMETER) {
                float[] values = event.values;
                xViewA.setText("Accel X: " + values[0]);
                yViewA.setText("Accel Y: " + values[1]);
                zViewA.setText("Accel Z: " + values[2]);
            }
            if (event.sensor.getType() == SensorManager.SENSOR_MAGNETIC_FIELD) {
                float[] values = event.values;
                xViewM.setText("Magnetic X: " + values[0]);
                yViewM.setText("Magnetic Y: " + values[1]);
                zViewM.setText("Magnetic Z: " + values[2]);
            }
            if (event.sensor.getType() == SensorManager.GRAVITY_EARTH) {
                float[] values = event.values;
                xViewG.setText("Gravity X: " + values[0]);
                yViewG.setText("Gravity Y: " + values[1]);
                zViewG.setText("Gravity Z: " + values[2]);
            }
        }
        }

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

        }
};


@Override
protected void onResume() {
  super.onResume();
  mSensorManager.registerListener(l1, mSensorManager.getDefaultSensor(Sensor.TYPE_ALL), SensorManager.SENSOR_DELAY_NORMAL);

}

@Override
protected void onStop() {
  mSensorManager.unregisterListener(l1);
  super.onStop();
}

@Override
public boolean onCreateOptionsMenu(Menu menu) {
    getMenuInflater().inflate(R.menu.activity_main, menu);
    return true;
}
}

And I can only see orientation changes in my application, everything else just doesn't work. Anyone knows where is the problem? What am I doing wrong?

share|improve this question
Here you test this app. emulator or real device.. – Md Abdul Gafur Oct 20 '12 at 10:50
On real device. – Doszi89 Oct 20 '12 at 10:55

closed as too localized by Robert Harvey Mar 14 at 14:38

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.