Wheel animation in rounded shape - android

I am new in android. I want to make rounded wheel animation type animation for my application home page like this one, any help please ?

What you are looking for is called "3D carousel view". We don't have much examples based on that. But still here is a very good link which has the source code for this sample.
http://www.codeproject.com/Articles/146145/Android-3D-Carousel
But still you have to roll out things to make the changes and customize it.

Please check below links its help to how to implement this functionality(Cover Flow)
http://code.google.com/p/android-coverflow/
http://www.inter-fuser.com/2010/02/android-coverflow-widget-v2.html

Related

How do i create this animation?

I would like to create this animation, i already checked several blogs but did not find one that addresses what i want. Some help would be appreciated thanks. animation.
Try using Lottie from airbnb. It's a library that renders affter effects animations in real time. Here's the setup guide
Creating that kind of animation via code is tedious , if you can find the gif of it you can just add it to the imageview , how you can achieve this you can find on the given link
Adding gif image in an ImageView in android

Reveal like animation Android

I'm trying to create an animation like this:
http://imgur.com/qvl7TP5
I did try the CircularReveal animation, but this does not quite look like a CircularReveal. This is also the animation Google Play Store uses when going from a list of apps to its individual page. I have looked it up a lot but in vain. Please help by pointing me in the right direction.
Your requirement very slimier to FABRevealLayout
Hope this library helps you
https://github.com/truizlop/FABRevealLayout
https://github.com/sephiroth74/ViewRevealAnimator
Thank you

Android image slideshow maker with animation, affacet

I am going to create an application as a picture slideshow maker. But I dont know which library will help me to create the video from a list of image.
I found out some suggestion about FFMEGP for android. I tried it out, but it's not smooth, no animation, no affect. I am not sure if I can customize it.
for ex: I want to create an application like this one : https://play.google.com/store/apps/details?id=com.scoompa.slideshow
this app is awesome, a lot of image transitions, affect style, adding text, icon.
would someone please help me to understand which library or solution they re using !
I am very appreciated! thanks all in advance.

circular wheel type scrolling menu in android

I want to implement same menu in my application. i tried many Demo examples of wheel type that use a static image which is upl![enter image description here][1]oaded once without any success. . so any one please help me out
A menu exact similar to this
link => https://stackoverflow.com/questions/12072692/a-circular-layout-with-scrollable-contents-in-it
Not sure about a scrolling feature but I have seen some menus that are similar to the one in the link that you posted. Links:
1.) daCapricorn's custom view called: ArcMenu.
2.) anupcowkur's android wheel.
3.) R4md4c's android rotary wheel view.
4.) lib4's rotate wheel.
I hope these can help.

Android - How can I create a hexagon in Android and rotate it with animation?

I know basic level Android, but haven't had done animation before. Moreover, I don't have any clue as to how can I create custom Geometrical objects like triangle, Hexagon, etc.
Moreover, I don't know anything about doing animation in Android. I'd like to have relevant tutorial links or blogs which can help understand the basics and preferable a sample code for "Rotation" animation.
Thanks in advance.
http://code.google.com/p/nehe-android/ (the code is best documentation ^_^)
but it is for open gl custom objects on top of your view/surface view, it is commonly used in games.
If you want to do just rotation for Button, there are http://developer.android.com/reference/android/view/animation/Animation.html and subclasses of it (RotateAnimation and so on), you can even do a custom one. By this way you can do awesome user experience for application which use default android controls.
Cheers

Categories

Resources