I m using this sample for android sdk http://developer.android.com/resources/samples/ApiDemos/src/com/example/android/apis/graphics/Compass.html
In that sample,the compass is like that

I would like to use a graphic for the compass as this one for example 
Is that possible?Maybe my question is stupid but i have never used graphics like that before!Thanks
Yes, instead of using
canvas.drawPath()in the example, replace it with a call to canvas.drawBitmap() where the bit map you pass is the graphic you want to display. Note there are multipledrawBitmap()methods. Use which ever one best suites your needs.