Hi all^^ I try to show a location on a Map in the Position(100,100). This works fine with this code:
options = new BitmapFactory.Options(); options.inTempStorage = new byte[16*1024]; bitmapImage = BitmapFactory.decodeResource(getResources(),R.drawable.dasa_map,options); myMap=bitmapImage.copy(Bitmap.Config.ARGB_8888, true); positionIcon=BitmapFactory.decodeResource(getResources(),R.drawable.ic_maps_indicator_current_position); c = new Canvas(myMap); paint= new Paint(); c.drawBitmap(positionIcon, 100,100, paint); Now I want to change the position off the "positionIcon" to another location (for example (200,200)). How can i do this? -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

