Re: [android-developers] Draw bitmaps one after other using canvas

2011-01-28 Thread TreKing
On Fri, Jan 28, 2011 at 4:20 PM, android777 wrote: > How can I draw bitmaps one after other. I was trying to draw three bitmaps > as follows. > Sounds like you should be looking into animations. - Tr

RE: [android-developers] Draw bitmaps one after other using canvas

2011-01-28 Thread Tommy
@googlegroups.com Subject: Re: [android-developers] Draw bitmaps one after other using canvas What are you trying to achieve? If you want a pause between the switch, you have to set it in your code, else, you wouldn't notice the transition. Kumar Bibek http://techdroid.kbeanie.com http://www.kbeani

Re: [android-developers] Draw bitmaps one after other using canvas

2011-01-28 Thread Kumar Bibek
What are you trying to achieve? If you want a pause between the switch, you have to set it in your code, else, you wouldn't notice the transition. Kumar Bibek http://techdroid.kbeanie.com http://www.kbeanie.com On Sat, Jan 29, 2011 at 3:55 AM, android777 wrote: > How can I draw bitmaps one af

[android-developers] Draw bitmaps one after other using canvas

2011-01-28 Thread android777
How can I draw bitmaps one after other. I was trying to draw three bitmaps as follows. Bitmap flower = BitmapFactory.decodeResource(getResources(),R.drawable.flowers1); canvas.drawColor(Color.BLACK); canvas.drawBitmap(kangoo, 0, 0, null); flower = BitmapFactory.dec

[android-developers] Draw bitmaps one after other using canvas

2011-01-28 Thread android777
How can I draw bitmaps one after other. I was trying to draw three bitmaps as follows. Bitmap kangoo = BitmapFactory.decodeResource(getResources(),R.drawable.flowers1); canvas.drawColor(Color.BLACK); canvas.drawBitmap(kangoo, 0, 0, null); Bitmap kangoo = BitmapFact