Tagged Questions
0
votes
0answers
11 views
android - Flip animation in imageview using multiple images
My requirement, want to animate multiple images in single ImageView like Flipper, want to change the image in certain time interval flip in left to right, right to left, top to bottom and bottom to ...
1
vote
1answer
46 views
Android Animation ImageView
I have 4 ImageViews which need to be moving from right to left. This is the sample video of my animation: https://docs.google.com/file/d/0B-Jk0rK9-8gUQTlUb3BrVGZEUHc/edit?usp=sharing
Here is the code ...
0
votes
1answer
23 views
Flipping two sided coin in Android
I am using this Rotate3dAnimation class to create a flipping coin animation which is also moving and scaling. But i can use it only with one image view. By just using startAnimation() method on that ...
1
vote
1answer
24 views
Implementing infinite scrolling background with forefront image in android
I'm trying do do a infinite scrolling background with a still image in the forefront, similar too a parallax effect. This effect will be in used only once, before the user presses a button to enter ...
-4
votes
1answer
37 views
Get a glowing effect when Button pressed [closed]
I want to achieve an effect something similar to this: http://postimg.org/image/ohalq5r51/ , in Android.
I have tried to make an animation of an image to fade in and out when the button has been ...
0
votes
0answers
9 views
How to hide view with translate animation with changing other layouts sizes?
I have a vertical LinearLayout containing other LinearLayout (header) and FrameLayout (Fragment container).
I need to create translate animation to hide header (it must move out of the screen top ...
0
votes
0answers
20 views
LinearLayout animate() clips the view, clipChildren doesn't work
I'm trying to animate the container LinearLayout (20dp) and btn button (20dp) (moving them right), but they get clipped after the full width of the main LinearLayout (40dp). I have tried ...
1
vote
2answers
18 views
Running two independent events simultaneously in android
I am new to android and stuck up at some point in the app i am currently developing. In my onCreate method I have two independent tasks : First is playing sounds in an array using for loop and Second ...
0
votes
0answers
14 views
How to write apps that syncs to device's refresh rate?
One one of the iPad's app website says - "to take full advantage of the iPad's graphics processing to create a fluid, 60 frames per second, experience." Wow! Moreover, Google Chrome's animation rate ...
0
votes
0answers
10 views
android Animation choppy when there is gridview
hi i have a simple xml layout like the following:
pseudo code only
<LinearLayout>
<LinearLayout>Facepile</LinearLayout>
<GridView>
List of friends
</GridView>
...
1
vote
2answers
43 views
Abnormaly fast animation speed with Andengine
I am using Andengine to build my game on Android and I use an AnimatedSprite to draw a running ninja. I am using the method changeFrameDuration to modify the animation speed depending on the speed ...
0
votes
1answer
15 views
Panoramic Background animation in Android
I have a panoramic background as a sky that i want to move from left to right and then from right to left to simulate a moving clouds animation as a screen background .
This should repeat ...
0
votes
1answer
23 views
Bouncing back on the edges
I am trying to make a small game where you can fling a coin on the screen. while i was searching for that kind of animation i found this page
...
48
votes
9answers
24k views
Android: Expand/collapse animation
Hi all,
Let's say I have a vertical linearLayout with :
[v1]
[v2]
By default v1 has visibily = GONE. I would like to show v1 with an expand animation and push down v2 at the same time.
I tried ...
23
votes
3answers
11k views
android animation is not finished in onAnimationEnd
It seems that an android animation is not truly finished when the onAnimationEnd event is fired although animation.hasEnded is set to true.
I want my view to change it's background drawable on the ...