On Sun, Jul 31, 2011 at 5:15 PM, G <[email protected]> wrote: > I believe it has something to do with the Canvas clearing what was there > originally. >
It has to do with the Canvas drawing exactly what you're telling it to draw. It's not going to arbitrarily keep previously drawn objects around. If you want it to draw two lines then tell it to draw two lines. This means you'd store the set of points that define the lines you want to draw and loop over them, drawing each in turn. ------------------------------------------------------------------------------------------------- TreKing <http://sites.google.com/site/rezmobileapps/treking> - Chicago transit tracking app for Android-powered devices -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

