Android dialog animation effect - android

I am new to android development.
I want to display a dialog on activity load.
The animation details:
After some times lets say 2secs, the dialog should be fade away and zoom out.
Finally become a small square in the center of the screen. (both horizontally and vertically)
After that the small square should move to top with effect which forms an icon in the top bar.
Is there anyway to do that?I have gone through several tutorials but cant find an effect like this.
Please help.

Related

Animate image from off screen to center of screen

I would like to have an (drawable) image start off the screen and animate it to the middle of the screen.
I have searched around a bit and cannot find a great answer. Some even saying there are problems with starting an animation off the screen.
Is something like this possible?
Checkout this
img.setTranslationX(-screenWidth/2);
img.animate().translationX(0)
.setDuration(1000)
.setStartDelay(400);

Showing multiple images in Android Canvas for Android Game

I have three different images and i want to write a code which will randomly select any of these images and display it at the top of the screen.
Then this image will move downwards and once it reaches the bottom of the screen the image will disappear from the screen.
Now this logic should be continued in the loop where these images will keep on appearing at the top and move towards the bottom of the screen.
I am unable to figure out a way for this. I am trying this on the Canvas.
Basically these three images are kind of Weapons (one is arrow, another is bomb and third one is missile). I want a continuous loop where these images will keep on occurring at the top of the screen and moves downwards and disappear once they reach the bottom.
Can anyone please help me with this?

Android - Image entrance animation

I want to create an effect similar to Facebook Home Lock screen here. Images with Burns effect.
Images(wider than the screen) start with it's left part shown and scroll smoothly to right.
I've tried to View.animate.x(-50.0f) but the image appears cropped when it moves. (I used scaleType=center and the image is larger than the screen)
Any ideas?
Thanks

bottom to top with fade animation android

I am trying to make a slideshow like animation to simulate the simple alpha masking in any video editing software, for example i want a chart to go from bottom to top. i tried property animation, animatorset and alphaanimation. searched the web nothing helped :( i was able to control translate / transparency but not both together. another way is to get image frames and swap between them (but i am running from this solution) another solution is to make chart bars on a progress bar and animate them but i had troble with png as prgressbar trims png(i really dont know if this a good solution) any idea?

android book page scrolling with transparent background

I want to make a book page scrolling effect like the picture below.
This is a Standby screen in Acer Liquid.
It shows a transparent layout slidable with many views on it, and the left-bottom corner shows a book page rolling-up effect. The corner rolled is draggable and transparent.
If I slide the views, the corner rolled shows the views' moving with transparent.
That is what I don't know how to do.
I did the corner rolled with a screenshot bitmap. Take a screenshot and roll it up... That's what I did. And that means the corner rolled will be no change if I slide the views.. because it is a picture!
Does anybody know how to do that?
There is an open source library you can use. https://github.com/harism/android_page_curl

Categories

Resources