So I've been learning and working with android transitions and animations. So I would like to know how can I achieve this animation.
I've searched a lot and couldn't find anything. So please help me.
I just came upon the new MotionLayout, which looks really awesome. If you look in the Google Samples for "YouTube like motion Example", you'll find exactly what you were looking for. Plus this is future proof and without an external library.
So I found a library in GitHub and it had transitions of previous version of YouTube. So I'll be studying it's source code.
Related
Well, after two weeks of searching for this, I give up.
I've searched everywhere for a Java/android library to put together images and make a simple video. No luck.
I found jcodec, a promising library, but I just couldn't make it compile on eclipse. The android example given by them is throwing me errors.
Has anyone in the world accomplished this task? Is it even possible? I'm willing to pay if someone's got it.
Thank you guys in advance.
José-
What are you trying to do and what are you looking for? Have you looked into FFMPEG for Android? I'm currently looking into this myself, but take a look at this:
FFmpeg on Android
Can anyone tell me is there a tutorial out there to acheive similar to this on Android mobile devices?
GIF Image
YouTube Video
I have looked online but I dont even know what this effect is called? Searching for origami returns origami apps and searching for accordion returns, well, accordion apps.
for the accordion effect you can check this github library : Android Accordion View
and check how to use the DrawerLayout here
and please give me some feedback
Hope That Helps .
May be this github library can help you: https://github.com/7heaven/bitmapMesh
Can you look this site? Quartz Composer Tools export android or ios code.
http://facebook.github.io/origami/
And you can rove github gist.
https://gist.github.com/mustafasevgi/d49c31467053e80a9012
I really like some effects in iPad. Especial flipboard, but I am an android developer at the moment, so I want to build an app which has the same effect. But I cannot find any source code about it on the Internet. On youtube I found a video I really like. Can someone help me?
Hey… Here is a quick guide for getting the clipboard effect on your Android phone. Just go through this tutorial for getting it. Hope it will be helpful to you.
http://openaphid.github.com/blog/2012/07/27/how-to-handle-touch-events-for-flip-animation/ there u go, but it is on opengl, and i'm not sure if it supports complex views as ListView. If you want to make one from the scratch i also recommend you this link. It is on Flex, but the principle is similar. http://oreilly.com/pub/a/javascript/archive/flashhacks.html?page=1
I am implementing an app in which i need to flip/pagecurl a pageview? how can i do that? I didnot find a solution for this. I searched a lot in google? Can any one help me on this?
Three possibilities I can think of.
You can implement it using cocos2d-x. There are a lot of scene's transitions which also contains the page curl animation you describe.
There is an open source project called android_page_curl which does this.
Depending on the android versions you are supporting, you can try RenderScript to create that animation.
I'm writing a new app for android and I would like to implement also a first launch tutorial. In particular, the tutorial has to be interactive. Basically, after a user registers to the service, a minimum settings will be required.
I'd like something like today we have into Google Apps, like Sheets, Docs and so far. The exception there is that those tutorials have the aim to explain how the app works. Here I want to have something where user can input some data.
I was looking at ShowcaseView but seems to be deprecated and old in style.
So here the question is: what is the best way to implement that? ViewPager?
I also had a look to this other question, but it did not help too much.
Any advice is really appreciated.
EDIT: I have found this other nice alternative. AppIntro It seems what I was looking for. :)
There are few I found by quick searching Github:
https://github.com/Seishin/showcaseview-android
https://github.com/worker8/TourGuide
https://github.com/amlcurran/ShowcaseView
I'm pretty sure you can find the right one for you ;)
You can do it in several ways that really depends on you and your app. Basically you can create a "Boarding" experience with ViewPager that will go thru the main screen of your app (with static images for example) where you explain the user what goes on in your app. The other way way is an interactive tutorial as the user already landed into your app - you can achieve this with something like Showcase (I'm pretty sure that there are libs on GitHub that are still maintained).
I would recommend Roman Nuriks Wizard Pager code on Github as a starting point. It's not so much a library as a sample code showing you how to do what you want.
The general approach is to use a ViewPager with some form of navigation buttons to move the user forwards and backwards through the pager Fragments.
https://github.com/romannurik/Android-WizardPager