furby wrote:
> So I am slowly trying to figure out maps... I want to be able to click
> on a point and pop up a message. Toast seemed the way to go. So I
> added an "onTap" handler in my class that extends ItemizedOverlay (the
> class is called HelloItemizedOverlay) and then tried to grab the Toast
> example... But I am seeing Eclipse tell me that the line is in error
> no matter what I do... My code is below - could someone tell me what i
> am doing wrong?
> 
> protected boolean onTap(int index) {
>       Toast.makeText(HelloItemizedOverlay.this, "TEST",
> Toast.LENGTH_SHORT).show();
>         return super.onTap(index);
> }
> 

And the error Eclipse gives you is...what?

-- 
Mark Murphy (a Commons Guy)
http://commonsware.com | http://twitter.com/commonsguy

App Widgets Deep Dive Seminar, 27 January 2010: http://bit.ly/deepdive

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to