[android-developers] Re: Itemized Overlays...Not drawing a collection but refreshing????

2010-04-23 Thread Scott
Isn't Itemized Overlay supposed to stack drawn objects...This is called everytime the locationchanged event triggers...So It should be drawing multiple circles..Instead i only ever see the newest one...They do not accumulate like i wanted. Sorry if a canned answer for the PS part felt in order..I

[android-developers] Re: Itemized Overlays...Not drawing a collection but refreshing????

2010-04-23 Thread Scott
I'd be happy to send you the Code if I count on you not Hurting my feelings after you see the carnage I'm doing to java whilst learning the language. On Apr 22, 9:27 pm, ~ TreKing treking...@gmail.com wrote: On Thu, Apr 22, 2010 at 9:49 AM, Scott scotthameis...@gmail.com wrote: What's been

Re: [android-developers] Re: Itemized Overlays...Not drawing a collection but refreshing????

2010-04-23 Thread ~ TreKing
On Fri, Apr 23, 2010 at 9:26 AM, Scott scotthameis...@gmail.com wrote: Isn't Itemized Overlay supposed to stack drawn objects... Yes it is ... be default it will draw an image for each item in its collection. (super.draw()) This is called everytime the locationchanged event triggers...

[android-developers] Re: Itemized Overlays...Not drawing a collection but refreshing????

2010-04-23 Thread Scott
Thank You that helped immensly (I THINK) 8^)...I think i understand. If you don't mind i'm going to word this another way and see if I REALLY UNDERSTAND. If i were to send a drawable object..i.e. PNG icon like all the examples the Overlay will accumulate them (add item)...However...My Draw is

Re: [android-developers] Re: Itemized Overlays...Not drawing a collection but refreshing????

2010-04-23 Thread ~ TreKing
On Fri, Apr 23, 2010 at 11:18 AM, Scott scotthameis...@gmail.com wrote: If you don't mind i'm going to word this another way and see if I REALLY UNDERSTAND. Let's do it. If i were to send a drawable object..i.e. PNG icon like all the examples the Overlay will accumulate them (add item)...

[android-developers] Re: Itemized Overlays...Not drawing a collection but refreshing????

2010-04-23 Thread Scott
That was AWESOME and really helps. So it leaves me only with one last Question...How do I do a drawcircle on the Overlay instead of Sending an icon? Every example I see involves placing an image marker..I don't see any examples for drawing Do you have a snippet of how you draw into an

Re: [android-developers] Re: Itemized Overlays...Not drawing a collection but refreshing????

2010-04-23 Thread ~ TreKing
On Fri, Apr 23, 2010 at 3:20 PM, Scott scotthameis...@gmail.com wrote: How do I do a drawcircle on the Overlay instead of Sending an icon? Don't call super.draw(), instead iterate over your list of OverlayItems and draw a circle at their locations. This is where deriving your own OverlayItem