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 .
Related
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
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/
i found a design in IOS that i really like but i cant figure out how to do it in android i have tried doing a custom spinner and am having a hard time with it and i thought of using a pop up but i need to be able to put clickable button in the pop up, so i think a spinner is my best change. I am going to post a picture of what i am trying to accomplish, specifically on the little half box on the top of the drop down! Thanks would really Appreciate some help thanks!!!! ![enter image description here][1] Also i have seen this in Android as well so i know it can be done. http://i.imgur.com/L1ftrSU.png
It's action you showed in your image is called QuickAction, there are many tutorials on how to create one:
Try the NewQuickAction lib, it has a number of modes, and one of them will give you exactly the same layout as your sample image. Here's a quick tutorial for using the library. Have used this lib for 2 years and worked quite well.
This tutorial offers another method to accomplish the same thing, worth checking out as well.
You can use OptionMenu. Refer to this link!
I want to create GridView same like google's play(show below image). I search on this and also refer this question but still not find any solution.
I have tried StaggeredGridView but in this it will create problem while orientation changes. I had also tried with Override onConfigurationChanged and in that gridView.invalidate(); and adapter.notifyDataSetInvalidated();But still getting problem.
The Problem is, if I load application in landscape mode and load images and at the time of loading images if I change the orientation then there will be a Gap shown in GridView.
Any one has any idea related to this then please share with me.
I suggest you to use this which allows user to create a GridView with uneven rows similar to how looks like Pinterest,GooglePlay's gridview .
It also Includes own OnItemClickListener and OnItemLongClickListener, selector, and fixed position restore.
If you already used the StaggeredGridView, then there is also one more library which works the same just you want and also look at this solution .
I hope this serve your purpose.
Hope this helps ... :)
I need to create a grid view exactly like this:
This feature is being used by many launchers (ADW launcher Ex, Go Ex)
I have been able to create a normal GridView using BaseAdapter. However I have no idea about creating this animation. Please help me with ideas regarding how to proceed in order to achieve something like this.