I\'m trying do do a infinite scrolling background with a still image in the forefront, similar too a parallax effect. This effect will be in used only once, before the user pres
Here's a thread which might be of interest to you: How to scroll "infinitely" wide view in Android?
One more thing that I managed to find is this one: http://github.com/commonsguy/cwac-endless Those two can be of big help to you.
One more thing I managed to find is this infinite gallery (seems to me more like a workaround in your case): http://code.google.com/p/infinite-gallery/
And a suggestion regarding the last link:
Have your adapter return some absurdly large number for it's count so the system thinks it's huge and will continue to scroll. Set your initial starting position to the halfway point. You will have a long way to scroll before you actually hit either end. Meanwhile you use a mod operation to keep within your real bounds for accessing your items.