tags:

views:

30

answers:

2

hi....I'm new to android.I'm developing an app in which I'm trying to find north direction of my device anyone who can solve my problem it would be great full.thanks in advance..

+1  A: 

The example given in Android's API demos actually uses deprecated API's. The answer & following comments to this question were very useful to me, as it gives example code using non-deprecated funcionts: http://stackoverflow.com/questions/3514808/how-to-get-android-compass-reading

example code can be found here: http://www.netmite.com/android/mydroid/cupcake/development/samples/Compass/src/com/example/android/compass/CompassActivity.java

bjg222