Animated vertical sliding menu in android - android

I need to make a sliding vertical menu in android as below. user slide the screen to up or down for selecting related item and the selected item must be bigger than the other items. How can I do that in android? Any idea would be great.
Edit:
I'm very desperate and need some help. how to do this in android?
http://iphone2020.wordpress.com/2012/06/10/uitableview-tricks/

This can probably be achieved by using the Camera.setTranslate function. See Android: Vertical ListView with overlaped rows and Android: vertical 3d listview for similar questions (with solutions)

Related

Making slider in android using recyclerview

How to make a slider like that, i mean to view the previous and the coming item
enter image description here
https://github.com/yarolegovich/DiscreteScrollView
The library is a RecyclerView-based implementation of a scrollable list, where current item is centered and can be changed using swipes. It is similar to a ViewPager, but you can quickly and painlessly create a layout, where views adjacent to the currently selected view are partially or fully visible on the screen.
I think it will help you.

Android: Arranging apps which widgets do I use: GridLayout / GridView

I understand the items that are visible to the user will be loaded when using GridView. Does this also applied when using GridLayout?
I currently working on laying out the applications' icon like the applications screen does. When user pressed the icon of the application they are allowed to arrange the icon in an unoccupied space.
At the moment, I don't know which widgets is preferred to use. If GridLayout behave the same as GridView, I would stick with that so no need to change the code.
If you want to be able to drag icons to rearrange them I would consider using GridLayout with RecyclerView. Take a look at Drag and Swipe with RecyclerView
Part Two: Handles, Grids, and Custom Animations.
If you are unfamiliar with RecyclerView and ItemTouchHelper then also look at Part One first

How to implement custom listview with "stacking" feature Android

I want to create a custom listview that scroll horizontally and stacks the last 4 items in the view instead of allowing them to go off screen. The stack should look something like this: . So if a user scrolls all the way to the left they see a regular listview, but as they scroll right, if an item was supposed to go off screen, it is instead stacked behind the last item in the list, with a max of 4 stacks. What's a good basic way to accomplish this? I already found the horizontally scrolling listview library I wanted to use but don't know where to start on the stacking part.

Which layout and control is suitable for sliding window where icons will be appearing in Android

I am developing an application where i need icons to be floating on my panel. I am not sure which control and layout will be suitable for this. I am attaching an image to make you understand what i mean. I want the same two column icon based layout. And if i will scroll down it should be in a sliding way and scroll down. Please let me know which layout and control is suitable for sliding window where icons will be appearing in Android. I am new bie so i am sorry if its not a good question.
If you have a fixed number of items, you could simply use LinearLayouts (with a ScrollView as the root view of the layout). If you have a large number of items or you don't know in advance how many items you will have, use a GridView (and do not place it inside of a ScrollView).

Show Bottom Buttons Bar in ListView while scrolling up and hide when scrolling down

I have a huge listview, with a Bottom bar with three buttons in them. Now, my question is, Is there a way to hide the bottom bar (With Buttons) while scrolling down, and show them up while scrolling up the listview?
Just like how Google+ Handles in the iOS App.
I found another link with the facebook pattern, Android Listview Floating First Row
It has one answer,
It's called the Quick Return pattern, and Roman's explained it in detail along with an example here: https://plus.google.com/u/0/+RomanNurik/posts/1Sb549FvpJt

Categories

Resources