| android Programming Glossary: infowindowrectHow to display popup on tapping overlay in android? http://stackoverflow.com/questions/4486864/how-to-display-popup-on-tapping-overlay-in-android  INFO_WINDOW_WIDTH 125  int INFO_WINDOW_HEIGHT 25  RectF infoWindowRect new RectF 0 0 100 20  RectF closeRect new RectF 0 0 20 20  infoWindowOffsetX.. INFO_WINDOW_HEIGHT bubbleIcon.getHeight  infoWindowRect.offset infoWindowOffsetX 95 infoWindowOffsetY 45  closeRect.offset.. 255 255 255  Draw inner info window  canvas.drawRoundRect infoWindowRect 5 5 getInnerPaint  Draw border for info window  canvas.drawRoundRect.. 
 Custom tap window on Google Map http://stackoverflow.com/questions/6385908/custom-tap-window-on-google-map  int INFO_WINDOW_WIDTH 200 int INFO_WINDOW_HEIGHT 50 RectF infoWindowRect new RectF 0 0 INFO_WINDOW_WIDTH INFO_WINDOW_HEIGHT  int infoWindowOffsetX.. INFO_WINDOW_HEIGHT bubbleIcon.getHeight  infoWindowRect.offset infoWindowOffsetX infoWindowOffsetY  Draw inner info..  Draw inner info window canvas.drawRoundRect infoWindowRect 5 5 getInnerPaint  Draw border for info window canvas.drawRoundRect.. 
 How to display popup on tapping overlay in android? http://stackoverflow.com/questions/4486864/how-to-display-popup-on-tapping-overlay-in-android   Setup the info window with the right size location  int INFO_WINDOW_WIDTH 125  int INFO_WINDOW_HEIGHT 25  RectF infoWindowRect new RectF 0 0 100 20  RectF closeRect new RectF 0 0 20 20  infoWindowOffsetX selDestinationOffset.x INFO_WINDOW_WIDTH 2.. INFO_WINDOW_WIDTH 2  infoWindowOffsetY selDestinationOffset.y INFO_WINDOW_HEIGHT bubbleIcon.getHeight  infoWindowRect.offset infoWindowOffsetX 95 infoWindowOffsetY 45  closeRect.offset infoWindowOffsetX 160 infoWindowOffsetY 90  Paint myPaintBlack..  Paint myPaintWhite new Paint  myPaintWhite.setARGB 255 255 255 255  Draw inner info window  canvas.drawRoundRect infoWindowRect 5 5 getInnerPaint  Draw border for info window  canvas.drawRoundRect infoWindowRect 5 5 getBorderPaint  Draw the MapLocation's.. 
 Custom tap window on Google Map http://stackoverflow.com/questions/6385908/custom-tap-window-on-google-map   Setup the info window with the right size location int INFO_WINDOW_WIDTH 200 int INFO_WINDOW_HEIGHT 50 RectF infoWindowRect new RectF 0 0 INFO_WINDOW_WIDTH INFO_WINDOW_HEIGHT  int infoWindowOffsetX selDestinationOffset.x INFO_WINDOW_WIDTH 2 int.. INFO_WINDOW_WIDTH 2 int infoWindowOffsetY selDestinationOffset.y INFO_WINDOW_HEIGHT bubbleIcon.getHeight  infoWindowRect.offset infoWindowOffsetX infoWindowOffsetY  Draw inner info window canvas.drawRoundRect infoWindowRect 5 5 getInnerPaint..  infoWindowRect.offset infoWindowOffsetX infoWindowOffsetY  Draw inner info window canvas.drawRoundRect infoWindowRect 5 5 getInnerPaint  Draw border for info window canvas.drawRoundRect infoWindowRect 5 5 getBorderPaint  Draw the MapLocation's.. 
 |