I want to add an unknown number of ImageView views to my layout with margin. In xml, I can use layout_margin like this:

<ImageView android:layout_margin="5dip" android:src="@drawable/image" />

There is ImageView.setPadding(), but no ImageView.setMargin(). I think it's along the lines of ImageView.setLayoutParams(LayoutParams), but not sure what to feed into that.

Does anyone know?

link|improve this question

62% accept rate
feedback

2 Answers

up vote 38 down vote accepted

android.view.ViewGroup.MarginLayoutParams has a method setMargins(left, top, right, bottom). Direct subclasses are: FrameLayout.LayoutParams, LinearLayout.LayoutParams and RelativeLayout.LayoutParams.

Using e.g. LinearLayout:

LinearLayout.LayoutParams lp = new LinearLayout.LayoutParams(LinearLayout.LayoutParams.WRAP_CONTENT, LinearLayout.LayoutParams.WRAP_CONTENT);
lp.setMargins(left, top, right, bottom);
imageView.setLayoutParams(lp);

MarginLayoutParams

link|improve this answer
Thanks, that worked – Bruce Lee Aug 5 '10 at 15:27
3  
Note that this sets margin size in PIXELS, is not the same as the dpi unit in the xml of this question. – aromero Jan 13 at 12:41
How can we use a dpi value instead of pixel? – Pascal Piché Mar 7 at 17:19
2  
You can scale the px value using context.getResources().getDisplayMetrics().density developer.android.com/reference/android/util/… – Key Mar 9 at 14:03
feedback
    image = (ImageView) findViewById(R.id.imageID);
    MarginLayoutParams marginParams = new MarginLayoutParams(image.getLayoutParams());
    marginParams.setMargins(left_margin, top_margin, right_margin, bottom_margin);
    RelativeLayout.LayoutParams layoutParams = new RelativeLayout.LayoutParams(marginParams);
    image.setLayoutParams(layoutParams);
link|improve this answer
What's the deal w/ the last 2 lines? clone the margin params into another params variable? I can confirm it's required :) – Adam Rabung Sep 1 '11 at 13:06
a million, billion, trillion thanks for this:) – mirroredAbstraction Mar 29 at 13:22
feedback

Your Answer

 
or
required, but never shown

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