[android-beginners] Re: Drawing a path line

2008-11-12 Thread Dennis Wilmsmann
Do you want to show driving directions? I think this isn't possible anymore without getting the information via HTTP vom Google Maps directly. The class com.google.googlenav.DrivingDirection isn't available anymore in the SDK 1.0. Dennis On 12 Nov., 01:47, Allan Valeriano [EMAIL PROTECTED]

[android-beginners] Re: Drawing a path line

2008-11-12 Thread Dennis Wilmsmann
Then just draw a line. ;) canvas.drawLine(startX, startY, stopX, stopY, paint) All x, y values are inside the screen coordinate system, for example inside 320x480. Dennis On 12 Nov., 12:33, Allan Valeriano [EMAIL PROTECTED] wrote: Not really. I just want to draw a straight line from point A

[android-beginners] Re: Drawing a path line

2008-11-12 Thread Allan Valeriano
Not really. I just want to draw a straight line from point A to point B. --Valeriano On Wed, Nov 12, 2008 at 6:32 AM, Dennis Wilmsmann [EMAIL PROTECTED] wrote: Do you want to show driving directions? I think this isn't possible anymore without getting the information via HTTP vom Google