When I add a new item to my ItemizedOverlay the onTap display I have set appears X times, where X is equal to the number of items that I added. So for example, if I add one item and tap it, it the onTap method gets called once, and in the LogCat I get:
02-04 23:28:56.188: INFO/NotificationService(52): enqueueToast pkg=android.mapit callback=android.app.ITransientNotification$Stub $pr...@4394c100 duration=0 If I add a second item and click ANY of the other items, the onTap method gets called twice and I get the following in LogCat: 02-04 23:29:29.408: INFO/NotificationService(52): enqueueToast pkg=android.mapit callback=android.app.ITransientNotification$Stub $pr...@438b4048 duration=0 02-04 23:29:29.418: INFO/NotificationService(52): enqueueToast pkg=android.mapit callback=android.app.ITransientNotification$Stub $pr...@43950d20 duration=0 If I add a third item and click ANY of the other items, the onTap method gets called three times and I get the following in LogCat: 02-04 23:30:32.007: INFO/NotificationService(52): enqueueToast pkg=android.mapit callback=android.app.ITransientNotification$Stub $pr...@4394fcf8 duration=0 02-04 23:30:32.017: INFO/NotificationService(52): enqueueToast pkg=android.mapit callback=android.app.ITransientNotification$Stub $pr...@43950408 duration=0 02-04 23:30:32.028: INFO/NotificationService(52): enqueueToast pkg=android.mapit callback=android.app.ITransientNotification$Stub $pr...@438babe0 duration=0 Any idea why this would occur? I'm running into issues with it affecting other things like removal of items. -- 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