I know how to show popup. But i'm in need to show the popup with animation like facebook like option. And also i want to implement same animation when selecting reactions icon in popup same like facebook like option like the below image. could you please suggest me any idea to do this?
Facebook has made its own library to implement this animation. This animation includes image rendering.
Now they have published that library for every fellow developer named KeyFrame.
Add their dependency file.
compile 'com.facebook.keyframes:keyframes:1.0'
You can download the sample and explore the ideas.
I hope this will help you.
Related
I'm looking for the right and convenient way to create this item. I spent many hours on the internet and still have not found anything like it on the android. Thank you in advance.
If you would like to use Android native library i suggest TabLayout, with a ViewPager.
It will allow you to have one tab selected at a time, and have the animation when you slide to the next tab.
This is just an example that you can take a look at: https://android.jlelse.eu/tablayout-and-viewpager-in-your-android-app-738b8840c38a
There are also some custom libraries that will maybe give a better animation or something like that but i suggest you first try this before trying 3rd party libs.
I´m trying to get some information about how I could implement such a Button like Facebook does in the new version of the app. Actually I am not sure if this button comes from Facebook or from Facebook messenge app but it was the easiest way to have an example of what I would like to achieve.
They add a draggable floating Button anywhere you are when getting a new message notification, anybody has and idea about how they achieved that?
Thanks in advance.
Edited:
Toucher: other app which uses what I´d like to achieve. Just below can find a link from Google Play
https://play.google.com/store/apps/details?id=com.gau.go.touchhelperex&feature=nav_result#?t=W251bGwsMSwxLDMsImNvbS5nYXUuZ28udG91Y2hoZWxwZXJleCJd
see if this help
http://forum.xda-developers.com/showthread.php?t=1688531
this library has drag view outside the app
I need to add help menu in my android application to help users know about the app for first time when they start Should show pop up screen like this
well, I can do this by adding such images but Is there any library or sample project available that I can use to achieve this!
here is developers link down there is a semi transparent image
What needs to happen is getting the locations of the relevant views and pass them, in an intent, to a help activity with a transparent background. Luckily, there is an open source library for this. Check out ShowcaseView . It is what you are looking for.
So, im developing a mobile app and I ve this doubt that I hope someone can solve. I have a List with projects. What I want is, when I click in one of the projects, I dont want to go to another page, I just want to see like a toolbar right under the project I just clicked. My idea is to follow basically the same concept like the app Any.Do .
Here it is what I would like to do.
I would appreciate if someone could help me on this.
Have a look at the QuickActionBar from GreenDroid project.
Cyril has created a GDCatalog sample app (available from the market), which also features this (src).
in my android app I would like to create a ux like the new Google+ app for android, in wich moving from one tab to the other (for example viewing a user profile: 'post','info' and 'photos') is possible simply swiping on the screen..
Can anyone please help me providing some example or tutorial?
Thanks everyone in advance!
They're doing horizontal swiping with a ViewPager. Here's a post on the android blog about how to do that.