I want to draw a bitmap on the draw method in MyPositionOverlay, extends the Overlay class, but I get this error: getResource () method is undefined for type MyPositionOverlay
Where am I mistaken?
Here is a code form drawing method:
Bitmap bmp = BitmapFactory.decodeResource(getResource(), R.drawable.icon); canvas.drawBitmap(bmp, screenPts.x, screenPts.y-50, null);
thanks
android
Jovan
source share