In last example " Detect touch and free draw on Bitmap ", the points are drawn on the canvas (also the bitmap) directly when user ...
Your andriod Apps ZOne
In last example " Detect touch and free draw on Bitmap ", the points are drawn on the canvas (also the bitmap) directly when user ...
The previous exercise " Get bitmap color on touched position in ImageView " show how to project touch position on ImageView to und...
Last exercise demonstrate " How to detect touch event and position on ImageView ". It's modified to get bitmap color on the to...
The example demonstrate how to detect touch event and position on ImageView, by implementing OnTouchListener(). MainActivity.java package co...
To detect user click on Info Window, implements OnInfoWindowClickListener. And setOnInfoWindowClickListener() to register it. Modify from th...
To make the marker draggable: - sets the draggability for the marker to true by calling draggable(true) when new the MarkerOptions. - implem...
Last post demonstrate how to " Draw Polyline on GoogleMap of Google Maps Android API v2 ", we can draw Polygon using the almost sa...
Further work on last exercise to " detect long click on map and add marker ", add function to detect MarkerClick event on GoogleMa...
TO detect onMapLongClick, implement OnMapLongClickListener and call myMap.setOnMapLongClickListener(this) to register. Override onMapLongCli...
Modify from last eample " Set map type of GoogleMap " to detect user click on GoogleMap, and animate to the user clicked location....