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

Hello I want to use the type type_orientation but it is deprecated for the android 4.0.3 . I use it for the augmented reality. I tried to find on the net but without success. My application works but my text inside stay in the same place! Here my code:

 @Override
    protected void onStart() {      
        super.onStart();
        sensorMngr = (SensorManager) getSystemService(Context.SENSOR_SERVICE);
        sensorLstr = createListener();
        sensorMngr.registerListener(sensorLstr, sensorMngr.getDefaultSensor(Sensor.TYPE_ORIENTATION), SensorManager.SENSOR_DELAY_UI);
    }

    @Override
    protected void onStop() {       
        super.onStop();
        sensorMngr = (SensorManager) getSystemService(Context.SENSOR_SERVICE);
        sensorMngr.unregisterListener(sensorLstr, sensorMngr.getDefaultSensor(Sensor.TYPE_ORIENTATION));        
    }

Everything it s good just this, i looked already on http://developer.android.com/reference/android/hardware/Sensor.html, but i can t understand (I m french and my english is not very perfect...) Thank you very much for your help!!!

share|improve this question
Are you sure it's a language problem? Do you understand that you are supposed to use a different approach? – Class Stacker Feb 21 at 13:47

1 Answer

See Sensor.TYPE_ORIENTATION..

This constant was deprecated in API level 8.
use SensorManager.getOrientation() instead.


I m french and my english is not very perfect...

Umm.. OK, but note that you seem to have understood the first line of that message, whereas the 2nd line has two short words and an alternate method. Just how much is there to 'not understand'?

share|improve this answer
But the problem is that i can t understand : getOrientation()... I tried to use this way but.... nothing can you give me an example please... Thank you again for your help – mhsc90 Feb 21 at 14:08
"an you give me an example please" I don't code Android at the moment, so no. – Andrew Thompson Feb 21 at 15:48

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.