Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

share|improve this question
Gravity doesn't change this? – Adam Driscoll Dec 3 '10 at 2:57
No, I tried that and it had no effect. – Christopher Perry Dec 4 '10 at 1:49
This is what you are finding – Drawable Mar 13 '12 at 14:15
@chiragsaga : i saw ur blog post at blogger abt this but what is "imageWidth" in that ? – Shruti Oct 30 '12 at 11:55

4 Answers

up vote 54 down vote accepted

hey, I kinda got around the very same issue with adjusting the left margin like so:

DisplayMetrics metrics = new DisplayMetrics();
ctx.getWindowManager().getDefaultDisplay().getMetrics(metrics);

Gallery gallery = (Gallery) ctx.findViewById(R.id.gallery);

MarginLayoutParams mlp = (MarginLayoutParams) gallery.getLayoutParams();
mlp.setMargins(-(metrics.widthPixels/2), 
               mlp.topMargin, 
               mlp.rightMargin, 
               mlp.bottomMargin
);

which goes almost to the left edge, but there is a bit of slack (half image width?), which I actually liked;

if you replace

-(metrics.widthPixels/2)

with

-(metrics.widthPixels/2 + YOUR_IMAGE_WIDTH)

it goes all the way to left edge of the screen (provided this gallery is displaying images of same size, which was my case)

share|improve this answer
3  
one thing to point out. CTX is your activity. Also, I am using fragments in my code, so I had to get the width of the fragment instead of the entire window. Done by view.getWidth()/2 – SpoiledTechie.com May 4 '11 at 21:44
7  
The calculation for the margin is not correct, but you have put me on the right track. Hence +1. See also marvinlabs.com/2011/06/proper-layout-gravity-gallery-widget for my margin calculation that works in more cases. – MarvinLabs Jun 3 '11 at 12:52
3  
@MarvinLabs: Thanks for sharing! Your solution (working with the resource ids to determine the width) is a great thought. Just wanted to add, that from your blog I removed the reset of the 'offset' to 0 after calculating it, to make it work and added 'gallery.requestLayout();' at the end. Also it only works, if the layout was calculated once, otherwise the 'parentView.getWidth()' always results in 0. – sunadorer Oct 26 '11 at 15:14
3  
what is R.dimen.gallery_spacing – frieza Dec 1 '11 at 11:53
2  
Sorry, here is the proper link. We moved the blog to a subdomain: blog.marvinlabs.com/2011/06/03/… – MarvinLabs Oct 3 '12 at 19:54
show 11 more comments

You need to adjust the Horizontal Scroll of the Gallery element.

gallery.scrollTo(yourOffset,0);

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

share|improve this answer
            LinearLayout container = (LinearLayout)findViewById(R.id.container);
        DisplayMetrics metrics = new DisplayMetrics();
        this.getWindowManager().getDefaultDisplay().getMetrics(metrics);

        @SuppressWarnings("deprecation")
        Gallery gv = new Gallery(getApplicationContext());
                LinearLayout.LayoutParams params = new LinearLayout.LayoutParams(LayoutParams.FILL_PARENT,LayoutParams.WRAP_CONTENT);
        params.setMargins(-(metrics.widthPixels)+image width    ,0,0,0); 
        gv.setLayoutParams(params);
        gv.setAdapter(new ImgAdp(this));
        container.addView(gv);

public class ImgAdp extends BaseAdapter {
        Context c;
        public ImgAdp(Context con)
        {
            c=con;
        }
        @Override
        public int getCount() {
            // TODO Auto-generated method stub
            return IDs.length;
        }

        @Override
        public Object getItem(int position) {
            // TODO Auto-generated method stub
            return position;
        }

        @Override
        public long getItemId(int position) {
            // TODO Auto-generated method stub
            return position;
        }

        @SuppressWarnings("deprecation")
        @Override
        public View getView(int position, View convertView, ViewGroup parent) {
            // TODO Auto-generated method stub
            ImageView img = new ImageView(c);
            img.setLayoutParams(new Gallery.LayoutParams(150, 150));
            img.setScaleType(ScaleType.FIT_XY);
            img.setPadding(50, 10, 50, 10);
            img.setImageResource(IDs[position]);
            return img;
        }
    }
share|improve this answer

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)"

share|improve this answer
That doesn't really do a left align, there's still a gap. I want the first image to line up in line with another image in a layout above the gallery. – Christopher Perry Dec 8 '10 at 1:55
Since this sort of works, I gave you credit. – Christopher Perry Dec 14 '10 at 2:13
-1: Does not work properly when you don't have enough items. The real solution is the one given by gibffe below. – MarvinLabs Jun 3 '11 at 12:53
Whilst this might not work when there is only 1 item, it works for me so definitely worth a +1 – Chris Simpson Aug 9 '11 at 23:23

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.