TeeDroid Caddy

On the course - green distances/score/play by play.

Mobile golf application tied in with a website providing golfers with easy access to their stats, rounds, etc.

The Android application lets golfers input their rounds to easily track their golf game. Users can also create and/or edit course information including GPS coordinates, scorecards, contact information, etc. TeeDroid Caddy also features round statistics, club distances, hole advice, clubs in the bag, course search.

The site lets members create profiles, analyze their game in depth, compare rounds. Also being added are golfing buddy/friend features, where members will be able to link and share their stats with other members. Real-scoring and mapping of golf rounds is also available.

The system is ready for launch. Of course once phones actually come out, or there is a new version of the SDK, I am sure there will be a need for some updating. New features are being added constantly.

Average: 2.3 (3 votes)

Comments

Move around image

sample code for zoom in and zoom out of images is:

private Drawable image;
image.setBounds(0, 0, getWidth(), getHeight());
image.draw(canvas);

zoom in and out is working fine.now I want to include move around routine for image in this code.So how can I move image on emulator using touch event?

Please give me information. thanks in advance.