How can i implement image slider in android that shows some part of next and previous image as shown in image.
Thank you for any kind of help.
You may try horizontal listview for this
https://github.com/dinocore1/DevsmartLib-Android
You can use some opensource Coverflow widget to accomplish your task. By this you can make it look more eye candy and can have more features.
One of them is:
https://code.google.com/p/android-coverflow/
Related
I have received a requirement make an image viewer with the listview at bottom like this video https://www.youtube.com/watch?v=aC4OFRxk988 but I don't know the name of that controller to research. Please help me. Thanks
I think viewpager and listview.
and dynamic scale image view are setmatrix.
simply reply. i can't add comment at your post....
if want more hint reply me.
https://github.com/ksoichiro/Android-ObservableScrollView
You can find here some custom implementations.
Test the demo app from the play store and check which one has the closest functionality to the one you desire. Then take a deep breath and try to understand how it's done.
Hi i have no idea how to perform that kind of effect..
hi an example of what i want
The efect is, having a background image or another similar layout, scroll another layout and show the background moving.
Can someone give me a link with some information or documentation?
Thank you in advance
You can use this library. You also have a sample app with code, go through it. https://github.com/nirhart/ParallaxScroll
It's look like : ObservableScrollView
https://github.com/ksoichiro/Android-ObservableScrollView
I have created circular listview and want to show data in circular form..any suggestion..
i want to display data in this format
I think Android SDK: Creating a Rotating Dialer will help you to create your layout.
You have to modify code yourself to achieve your goal. May be this is a good start for you. :)
I need to design an android app where in i have to display the home page as the below image. there will be 4-5 icons to which i need to give a horizontal scroll animation at an angle and the icon at the center will enlarge and have an on click listener to proceed to the respective activity of the particular icon clicked. I am very much new to android. I do not have any idea how to do these scroll animations. How do i start?? If anybody can please guide me through this???
Please help!!
Thanks in advance!!
Your requirement is some what 3D Carousel type style.
Check out Android 3D Carousel
This may help you to get a start up. Making some changes in this project may help you achieve your goal.
Hi I want to have image gallery like this.I have tried using jazzyviewpager.It's good but doesn't have this effect. can anybody tell me how can i achieve this effect for showing images.
You can extend the gallery view class, use setStaticTransformationsEnabled(true) and handle item transformations by yourself in getChildStaticTransformation .
EDIT: One way to do achieve this goal, is available in as a sample in a tutorial I wrote, here: http://code.google.com/p/android-3d-carousel-view/ . However this is not exactly what you need, just a starting point that you can modify further on. The important aspect is to learn how to use getChildStaticTransformation .