Android Carousel effect with layouts - android

I have found lots of carousel examples with images. But i don't find example that works with layout. Can anyone suggest any link with android carousel effect with different layouts.
e.g. Carousel with listviews. (Each view in the carousel ll be a listview)
Thanks in advance.

Here is the project you can download from this link
Its a video which will guide you in right direction ... also there is link to download source code there,, in ShowMore section
Hope this helps..

Related

how to auto scroll, scroll in view pager with circular dots

I am working on this issue for over 10 hours and its pushing me hard,
I need a library, which has circular dots, auto scroll, infinite scroll and I will provide title of the picture below it, I checked all the libraries provided so far and they did not help me, is there a library you guys use so far ? thank you
for circular indicators you can make use of this library :
https://github.com/ongakuer/CircleIndicator
and for autoscrollview you can use this library :
https://github.com/Trinea/android-auto-scroll-view-pager
I am using these two in my projects. make use of the github samples. it will help you for implementation details
Instead of finding libraries for this, implement the code that I am attaching below. Your dots view, auto scroll and infinite scroll will work with it. For the name of the image you can add code in the onPageChangeListener method to show the name of the image
View Pager Example for You
Hope your issue is resolved using this example that I made for you

Android layout/view to display swipe images

what Android layout or view type to be used to create horizontally swipeable images. What I am after is like what is used by a lot of app when we firstly install it or when it was just updated. Usually app uses this type of view to explain some main features of the app.
Hopefully I am making sense. Thank you.
You can use android ViewPager.
Visit http://developer.android.com/reference/android/support/v4/view/ViewPager.html
You can use a ViewPager class to implement this feature. Check out the tutorial here
You can also use coverflow to show swipable images with good animation that is more good than view pager only.
https://github.com/Polidea/android-coverflow

Custom Android GridView

I want to create a GridView like this one:
But, I don't know how! I know how work with Android GridView, but not like this one.
Suggestions of library or any tip will be welcome.
Thanks.
I want to create a GridView like this one
The View you are referring to can quite easily be created without using a GridView. If your components (clothing, bags, shoes etc.) are static, you can use nested LinearLayouts (with weights) inside a ScrollView.
Suggestions of library or any tip will be welcome.
You can try StaggeredGridView: Link
A demo project to get you going: Link

How to create an Google Currents like layout

Does anybody know how the article layout in the Google Currents Android app is built? I'd like to use some very similar layout for my app.
Example:
The first thing which came to my mind was to build up an the layout with a WebView with multicolumn stlye (http://www.w3.org/TR/css3-multicol/). Am I on the right way or is my suspicion completely wrong.
How do I get the page flip through the swipe/fling gesture and how to get the corresponding page indicator at the bottom?
Thanks in advance! :-)
You must use native views android and not webView because it is not efficient. But if you begun on Android you can actually use a webView is a good learning.
However, if you're interreses the layout android http://developer.android.com/ the website is a very good teaching technique. And what is the view of pourfaire text scroll from right to left, I encourage you to use the library ViewPagerIndicator.
I hope I have helped you!

Layout help in android

I am trying to implement a basic text to speech software. I have a GridView consisting of images. I need to have another view above this to which thumbnail of the images clicked can be placed.
Can anyone help me which view supports placing the thumbnail images?
You can use simple imageviews or modify your gridview to that similar on the android dev site. search hello gridview
if you look at the API examples that googles has you will find what you are looking for. Have a look in the part of Views
To the examples of Gallery and the sample of Grid.

Categories

Resources