[android-beginners] Re: GK:How to Animate the single image in the Gallery

2009-12-17 Thread Ganesh Ram
Thanks Justin.., Am able to display the image. But now am trying to rotate the image. In a single view am displaying 4 to 5 image In this selected image should be normal, Left side image should rotate to 90 degree and Right side image should rotate to 270 degress. Am using single view. Hope am

Re: [android-beginners] Re: GK:How to Animate the single image in the Gallery

2009-12-15 Thread Justin Anderson
You need to follow the tutorial I gave you a link to On Dec 14, 2009 11:43 PM, Ganesh Ram ganesh...@gmail.com wrote: Hi Justin.., Here is my code.., == private Integer[] gItems = { R.drawable.l, R.drawable.b2,

Re: [android-beginners] Re: GK:How to Animate the single image in the Gallery

2009-12-14 Thread Justin Anderson
ImageView.startAnimation() I'm assuming the items you are putting in your Gallery view are ImageView objects of course... By the way, HAVE SOME PATIENCE!! Everyone answering questions on here does so on their own spare/free time.

[android-beginners] Re: GK:How to Animate the single image in the Gallery

2009-12-14 Thread Ganesh Ram
Thanks Mr.Justin. Sorry i dont know how to add ImageView into the Gallery. Share me some sinpets... Plz help me ..., --- Gallery mGallery = (Gallery) findViewById(R.id.apps_all); ImageView

Re: [android-beginners] Re: GK:How to Animate the single image in the Gallery

2009-12-14 Thread Justin Anderson
How are you displaying the images in the gallery then? From your question and the information you provided it sounded like you had all of that in place already... You need to add them via an adapter class. Check out the following tutorial for more information:

[android-beginners] Re: GK:How to Animate the single image in the Gallery

2009-12-14 Thread Ganesh Ram
Hi Justin.., Here is my code.., == private Integer[] gItems = { R.drawable.l, R.drawable.b2, R.drawable.bi2, R.drawable.big2, R.drawable.re, R.drawable.ne, };

[android-beginners] Re: GK:How to Animate the single image in the Gallery

2009-12-13 Thread Ganesh Ram
Thanks a lot Mr.Justin, Can you tell how to achive my requirement How put the animation on the actual image itself ? If not gallery what else can be use ? I want multiple images with touch scrolling effect in single row view Cheers, Ganesh On Dec 11, 9:50 am, Justin Anderson

[android-beginners] Re: GK:How to Animate the single image in the Gallery

2009-12-13 Thread Ganesh Ram
Hi Justin., Actually my requiremnt is : i need to show some images in a single strip.(5 images) If i click Right or left i ll do some animation and show center image. Also i need to do different animation for other side images. Some like IPhone menu animation. Hope you got my requirement.

[android-beginners] Re: GK:How to Animate the single image in the Gallery

2009-12-13 Thread Ganesh Ram
Some one help me ! ! ! On Dec 11, 9:50 am, Justin Anderson janderson@gmail.com wrote: You are telling the gallery to do the animation.  If you want each image to have a different animation, then you need to put the animation on the actual image itself, not the gallery...