Skip to content Skip to sidebar Skip to footer

How To Create Android Listview Like Android Google Chrome Tab

I need to create listview like in this picture. The listview item go over each other like google chrome tabs.. I can move up or down listview item... Could anyone tell me a good ad

Solution 1:

You need an iOS passbook style component like CardWalletView


Solution 2:

You have to create some accordions type control

Here is a link which will help you

http://android-puremvc-ormlite.blogspot.com/2011/07/android-simple-accordion-panel.html

when you close the previous view you will not animate that view to the end you have to keep some margin of 2 to 3 pixels to show view as you want


Solution 3:

Another idea is you should create some view and use drag and drop... But also you have to some Math calculation... Try this maybe you can get something


Solution 4:

Expanding list views may help you with that. I assume that your list view will essentially expand on click and shift everything below the selected area downwards revealing only the content of that selected tab.

Expanding list views utilize the parent-child methods that would allow you to create a very rough view of what you are showing. Styling and customizing those rough layouts afterwards could very well allow you to get that look you're looking for.

Here are some links that might be useful. http://www.androidhive.info/2013/07/android-expandable-list-view-tutorial/ http://developer.android.com/reference/android/widget/ExpandableListView.html


Post a Comment for "How To Create Android Listview Like Android Google Chrome Tab"