When the Gallery first displays, it is centering the first item automatically. The behavior I want, is to left align the first item in the parent layout instead of centering it. How can I achieve this?
|
|
hey, I kinda got around the very same issue with adjusting the left margin like so:
which goes almost to the left edge, but there is a bit of slack (half image width?), which I actually liked; if you replace
with
it goes all the way to left edge of the screen (provided this gallery is displaying images of same size, which was my case) |
|||||||||||||||||||||
|
|
You need to adjust the Horizontal Scroll of the Gallery element.
However, you will run into a problem with this. You will see that the Gallery does not account for this and images coming in from the right will appear too late (i.e. the Gallery is oblivious to the fact they should've appeared). To solve this you need to create a custom Gallery class, instead of just extending it. To solve that you will need to have two more custom classes of AbsSpinner and AdapterView too. Look here to save yourself the pain of separating those classes from the package-level dependency hell: http://www.inter-fuser.com/2010/01/android-coverflow-widget.html |
|||
|
|
|
||||
|
|
|
when you set an adpter to the gallery,use the method "setselection(position, boolean)" to set the item behind the first one. for example,the adapter has 5 items,then "setSelection(2, true)" |
|||||||||
|