How can I implement an infinite scroll view in Android 2.2?
-
I need to implement an horizontal gallery with infinite scroll to the left and to the right (circular). What can the the best approach to do this using Android 2.2 with and API 8? Thanks in advance for your help.
-
Answer:
Android has a Gallery component. But I wouldn't recommend using that one, because it's a) - deprecated, b) - not optimized for infinite scrolling. Yet, it's code might give you some insights. What I would recommend though - is to look into RecyclerView (https://developer.android.com/reference/android/support/v7/widget/RecyclerView.html). RecyclerView is perfectly suitable for infinite scrolling and will give you lots of stuff for free (like animations). If it's default LinearLayout manager does not do the job for you you will probably have to write your own. As a matter of fact I have just last week finished writing a horizontally scrolling gallery-like custom layout manager for the company I work at using a custom LayoutManager. Can't say it was a breeze, but nothing extraordinary too. I found this blogĀ http://wiresareobsolete.com/2014/09/building-a-recyclerview-layoutmanager-part-1/ to be extremely helpful to get started. "Circularity" though is something you would need to implement in your adapter of course.
Alexander Osmanov at Quora Visit the source
Related Q & A:
- How can I pause and restart animations in Android?Best solution by Stack Overflow
- How can I implement an atomic incr and decr on top of an eventually consistent key-value store?Best solution by Stack Overflow
- How can I implement a multilayer social network in R?Best solution by Computational Science
- How can I put my own pictures in my sims 2 game?Best solution by Yahoo! Answers
- Can I swap a 300zx tt into a 300zx 2+2?Best solution by answers.yahoo.com
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
For every problem there is a solution! Proved by Solucija.
-
Got an issue and looking for advice?
-
Ask Solucija to search every corner of the Web for help.
-
Get workable solutions and helpful tips in a moment.
Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.