Re: [android-beginners] Re: View-based vs Canvas-based graphics apps

2010-01-17 Thread Dylan Northrup
It's written by Ed Burnett and published by Pragmatic Programmers. The web page for the book is http://www.pragprog.com/titles/eband2/hello-android It's available in print and e-book formats. I don't work for them, I'm just a happy owner of the book. On Thu, Jan 14, 2010 at 2:37 PM, Michael

[android-beginners] Re: View-based vs Canvas-based graphics apps

2010-01-17 Thread csaunders
I was looking for some good demos on how to do some graphics. These demos give a pretty straightforward way to do graphics by drawing directly to the canvas: git://github.com/eburke/android_game_examples.git On Jan 14, 2:37 pm, Michael boggess coda5...@gmail.com wrote: Do you have anymore

[android-beginners] Re: View-based vs Canvas-based graphics apps

2010-01-17 Thread IcedDante
The demo apps contain a few examples. For example, check out the FingerPaint app which uses the Canvas drawPath() method. There are also OpenGL examples here as well. These demos are bundled with the sdk and are available in the platform directories. Randeep On Jan 5, 11:29 am, Abolfoooud

Re: [android-beginners] Re: View-based vs Canvas-based graphics apps

2010-01-15 Thread Alessandro Pellizzari
Il giorno gio, 14/01/2010 alle 11.37 -0800, Michael boggess ha scritto: Do you have anymore info on this book? What kind of info? :) -- Alessandro Pellizzari -- You received this message because you are subscribed to the Google Groups Android Beginners group. NEW! Try asking and tagging

[android-beginners] Re: View-based vs Canvas-based graphics apps

2010-01-14 Thread Michael boggess
Do you have anymore info on this book? On Jan 14, 7:11 am, Alessandro Pellizzari a...@amiran.it wrote: Il giorno mar, 05/01/2010 alle 08.29 -0800, Abolfoooud ha scritto: Now almost all of the examples i found in the SDK for graphics use the View metaphor, or SurfaceView. I was wondering how