4

We have to implement a vertical Gallery of objects (say static text) with fixed focus at the center of screen. Focus will stay at one point and the items will scroll up and down. The list will start from the center of screen. Questions:

  1. Can this be done using ListView? How?
  2. Or will I have to extend Gallery object and work on orientation?
Samuh
  • 36,316
  • 26
  • 109
  • 116
  • vertical scrolling is desired plus i need view recycling too...:) – Samuh Mar 28 '11 at 06:08
  • oops sorry ! I meant vertical srollview :) deleted the older comment ! – sat Mar 28 '11 at 06:13
  • please check my simple solution here: http://stackoverflow.com/questions/4639958/how-i-can-create-vertical-gallery-in-android/15358307#15358307 – Rotem Mar 12 '13 at 10:10

1 Answers1

3

Gallery will not allow vertical scrolling, only horizontal. For that reason, I don't think your second question has a working answer. I recently needed to accomplish something along these lines and found this to be helpful: http://code.google.com/p/android-wheel/

TomHarrigan
  • 618
  • 4
  • 10