Tagged Questions
0
votes
0answers
16 views
how to move image view using animation
I have two image view one is small and other is large.
In large image view which is like background of an app I have a predefined path like in Ludo Game.
How can I move the smaller image view on ...
-3
votes
0answers
27 views
android: move image view through translation animation
i want to move my image view from one position to other.i have used multi dimension array for this.example is as follows-
new int[][]{
new int []{ 130,123,234},
new int []{213,354,564},};
now my ...
0
votes
1answer
30 views
How can save new position when animation is ended?
hi i'm work on animation(using TranslateAnimation()) i have 4 button(left move,right move,up button,down button) and a imageview i want now how can save the new position when the animation is ...
1
vote
2answers
71 views
How to use Array index in Ludo board
I just want to translate an image(Tokens) from bottom to top, left to right in Ludo board using animation. For this I have taken coordinates of every ImageView from where every token (red, blue, ...
0
votes
2answers
52 views
Infinite animation of imageview android
This is just a continuation of my unsolved question which can be found here: Animate ImageView
For now, I managed to make the imageviews move using
<?xml version="1.0" encoding="utf-8"?>
...
0
votes
0answers
44 views
How can we make an array-list for all the positions and use animation in imageview. Then call will be according to index of array list
I am making an Ludo game, for this i have to make array-list for all positions so that my tokens move for this i have taken coordinates in an array my array is like
double aPowersOfTwo[] = new ...
1
vote
0answers
38 views
Fullscreen Rotating Background Image
Developing an app for Android and I'm required to have a fullscreen image rotate (spin around infinitely, pivoted at the centre of the screen) in the background.
I have tried rotating the ImageView ...
0
votes
0answers
31 views
Blurred out effect animation on an ImageView
I am making a quiz game in which pictures are shown to the players. Initially a blurred image is shown and with time the picture becomes clearer and clearer. How do I do this? Thanks.
I am thinking ...
0
votes
1answer
29 views
Animate an ImageView by saving starting and ending position
I have an ImageView which can be moved by finger with a touchListener. I want the user to save two positions of the Imageview by pressing a button and after that, when he press to play the animation, ...
0
votes
0answers
41 views
How to make animations with ValueAnimator and ImageView Matrix Scale in a constant speed?
Well this question is a little confusing that what it says is like this:
public void onLoaded(final ImageView imageView, Bitmap loadedBitmap, String url, boolean loadedFromCache) {
matrix ...
1
vote
0answers
130 views
Android translate animation with image view not getting position properly. Help needed
I have few issues in my code:
1.i'm using getX(), getY() to get the position of imageview in relative layout. Is it correct method to get positions?
2.Translate Animate doesn't stop with exact ...
-2
votes
0answers
63 views
Android card throw animation [closed]
i'm new to android . I want to distribute single card to every player in game. Can anyone suggest me how can i do for card throw animation?
I tried with imageviews.. like moving one imageview to ...
0
votes
1answer
88 views
android image animation in ludo game
i have a layout of ludo board in which i want to move my tokens according to dice's number.like if dice roll number is 6 which image view we will click should move 6 and if it is 4 then 4 place ...
0
votes
0answers
80 views
Android animation: translate image bigger than screen only shows first part
I'm trying to make an infinite animation using an image. The idea is having an image larger than screen (3x or more) and this image will start and end the same way, something like this:
I'm gonna ...
0
votes
0answers
20 views
Animate Height of ImageView
I'm to stupid to figure out how I animate the height of an ImageView, which is filled with a shape.
I tried it with "ObjectAnimator" but that doesn't work.
The Problem is that the height must be ...
1
vote
4answers
89 views
Multiple animations on 1 imageview android
I have 2 animations which are already working,
i want to fade my train + tween my train on the same time.
If I execute 1 of these lines it works.
But if I try to execute both it, only 1 will work..
I ...
0
votes
1answer
139 views
Hide the ImageView after the Frame by Frame Animation stops in android
I just applied Frame by Frame animation in the image view , i just use 2 images in frame by frame
main.java
public class MainActivity extends Activity {
@Override
protected void onCreate(Bundle ...
0
votes
1answer
315 views
How to create ImageView animation sequence from drawable resources?
I am trying to load 11 images from the drawable resources and display them in an ImageView with a delay. Practically doing something like AnimationDrawable, since creating such results in an ...
0
votes
3answers
101 views
how to make the animation clickable in android [duplicate]
I've made a simple animation for an image and I set the event OnClick on the image to make a toast. The problem is that I made the image started doing the animation on the onCreate and I made set the ...
0
votes
1answer
190 views
Android Animation with onDraw or ImageView?
I want to create an android game. Everytime someone touches the display the player should go up, and if he releases the player should fall.
With the help of many tutorials I made it work but now I ...
1
vote
0answers
92 views
Android Animation - Need to move to a certain position
I have a problem!
First. I need to animate a card, moving from its original position and land on top of another predefined imageview (Representing the stack of cards at a cardtable)
public ...
0
votes
2answers
179 views
Titanium ImageView animation width and height
I try to create an ImageView in Titanium like this:
var animationView = Titanium.UI.createImageView
(
{
images:animationImages,
duration:50,
repeatCount:0,
width: ...
0
votes
2answers
155 views
Create animation in imageviews
I have an imageview with a default image. Now when I try to click it, I want it to animate that displays 4 frames of images. How could I accomplish this, I tried a simpler approach (more of a dumb ...
1
vote
4answers
326 views
how to change next page using swipeview in android?
am new to android.am doing simple aphabate app.in that app am using alphabetes letters.when swipe on the letter how it will move to next letter.please give me suggestions
thanks in advance
1
vote
2answers
256 views
How to move an image from bottom to top in android with in specified time period?
I have an image on my android activity page. I want that an image move to top from bottom and then it should be disappear and directly current activity call next activity.
0
votes
0answers
164 views
Only animate ImageView in ViewFlipper
I try to animate only the Image in the ViewFlipper in the top of my screen. But the animation goes over the entire screen. Can I only animate within the limits of the ViewFlipper
Thanks
My Main.Xml ...
1
vote
1answer
237 views
How to display imageview slide out animation with another imageview beneath it?
I'm trying to figure out the best approach to displaying an imageview on top of another and with the slide of the finger, the top imageview will slide off the screen. Think of a deck of cards: As you ...
0
votes
1answer
69 views
Trouble with animation on UIImageView
I have 7 images which i'm trying to make fade in/out of 1 ImageView. I have stored all the images in an array, and then have a loop to display each image and fade into the next, however, when i run ...
2
votes
3answers
299 views
How can I make my animation goes from the bottom to top of my screen?
This is my xml:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
...
0
votes
2answers
375 views
750 frame transparent PNG animation in ImageView at 23fps
I have an Activity with two ImageViews set to full screen 320 x 480.
I need to play an animation but couldn't get more than 50 to play using AnimateDrawable and an xml array before running out of VM.
...
0
votes
1answer
105 views
Xcode animation from URLS instead of local files
I am trying to make an animation from some URLS.
I know the code
animation.animationImages = [NSArray arrayWithObjects:
[UIImage imageNamed:@"img-1.gif"],
...
0
votes
1answer
97 views
Move an Image bitmap on a Path drawn on layout background
I need to move a bitmap image on a path drawn in background of my layout, it can be also a movement of the bitmap inside another bitmap. The movement is caused by smartphone's accelerometer. Any ...
0
votes
1answer
190 views
Strange behaviour ScaleAnimation setFillAfter(true) / false
we are using a TouchImageView and want to implement a onDoubleTap zoom ...
so far so good.
The problem is:
if we apply a scale animation and set setFillAfter(false), in an ...
1
vote
1answer
115 views
How to appear an image into an imageview with an animation
i have a layout like this:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
...
0
votes
0answers
313 views
Android - tips on creating slot machine animation
I want to create an animation like a slot machine, in Android, but I'm not sure how to do this.
I want the animation to look like this:
http://www.youtube.com/watch?v=EX-uzP6BdjI (its pretty obvious ...
0
votes
1answer
131 views
How to apply a sliding animation on ImageView without knowing its current coordiates?
I have an ImageView some where in the center of the screen, and I want to make it "slide" a few pixels to the right, preferably without having to find out its current x and y coordinates.
I saw ...
0
votes
1answer
129 views
iphone development: collision detection does not work for the animation
The code below simply creates small squares from top of the screen and moves to the bottom. I also have an UIImageView(player) which is controlled by the accelerometer on the x axis. The aim is not ...
0
votes
2answers
250 views
iphone development: animation with NSTimer
I wrote the code below to make move an image from the top to the button by using NSTimer. However when I run it I cannot have the images separately. Basically, the image leaves trace. what I want is ...
0
votes
0answers
98 views
Image slide in ImageView without interruption
I have an ImageView animated with set Animation.
This is the animation file:
<translate
xmlns:android="http://schemas.android.com/apk/res/android"
android:duration="6000"
...
0
votes
0answers
70 views
Position a imageView based on a scale transition (animationend)
I am scaling a ImageView using animations. Now I need that scaled imageview to sit there and wait for a onclick to zoom back into position. I dont think its possible to get a image to scale and sit ...
0
votes
1answer
355 views
Android ImageView Translate Animation
I am trying to animate a ImageView, scaling it down, fading it out and translating it to the top-left corner of the screen.
This is what I got:
<?xml version="1.0" encoding="utf-8"?>
<set ...
0
votes
0answers
271 views
AnimationDrawable is not starting, stuck at the first frame
I have got some problem with the AnimationDrawable, as it stuck at the first frame.
So let me explain what I want to achieve.
I am trying to draw a two frames animation on a canvas. SIMPLE...
so, ...
2
votes
0answers
298 views
android translate ImageView over SurfaceView
I have two widgets, ImageView and SurfaceView.
SurfaceView contains Camera preview. Sometimes I have to show Bitmap (i use ImageView to show this image) over SurfaceView. It's OK. But, i also have to ...
1
vote
2answers
700 views
Android indeterminate progress as ImageView source
I have an ImageView for which I'd like to show an indeterminate progress spinner until the image has been loaded. Ideally, I'd like to point to the drawable itself from my layout xml file, and then ...
1
vote
0answers
126 views
setImageResource causes animation not to work
I'm facing problems with Animations and setting image resource.
I want to change the Image of an ImageView after a TranslateAnimation has finished, but doing this causes the Animation not to work ...
0
votes
2answers
484 views
Looped animation in ImageView
I have an ImageView in my screen and I want to make it shake (rotate left and then rotate right).
I know how to animate an ImageView, this is my code:
new RotateAnimation(20f, ...
1
vote
2answers
394 views
How to move and animate a image in android?
i m trying to move a image in the imageview from top to bottom and back..but the image seems to stay on the place and not move at all. i tried the animation type but it didnt work..here is the code..
...
0
votes
1answer
389 views
Android AnimationDrawable creation and looping
I am trying to create an animation drawable that will simply have two frames and loop on the screen.
However, for some reason my Animationdrawable isn't doing even one round and just showing the ...
1
vote
0answers
821 views
WindowManager.LayoutParams Animations
I have an ImageView that I'm adding through WindowManager.addView(ImageView, WindowManager.LayoutParams). I want to animate the ImageView when it appears on the screen but it doesn't seem to animate ...
0
votes
1answer
406 views
RotateAnimation.setFillAfter(true) and .setFillEnabled(true) does not work
i'm trying to rotate 3 imageViews with a rotateAnimaten. i calculate the degrees to rotate ever 30ms. if the degree changed i create the rotateAnimation:
rpmAnim=new ...






