here is the code-

FrameLayout.LayoutParams params = (FrameLayout.LayoutParams) searchPin.getLayoutParams();
params.setMargins(135, 176, 0, 0);
//params.leftMargin = 135; // also not worked 
//params.topMargin = 376;
searchPin.setLayoutParams(params);

Where ever, from xml its working-

android:layout_marginLeft="135dp"

what can be the reason? am i missing something!

-thnx

link|improve this question

feedback

2 Answers

I think what you're missing is that, when you set programmatically the parameters for an element, those parameters are provided actually to the parent View, so that it knows how to position the element. The parameters are not set back to the element itself. Consider the following code example. Also note, that the layout parameters are of the type of the parent.

LinearLayout linearLayout = new LinearLayout(this);

LinearLayout.LayoutParams layoutParams = new LinearLayout.LayoutParams(
     LinearLayout.LayoutParams.FILL_PARENT, 
     LinearLayout.LayoutParams.WRAP_CONTENT);

layoutParams.setMargins(6,6,6,6);

Button someButton=new Button(this);
okButton.setText("some text");

linearLayout.addView(okButton, layoutParams);
link|improve this answer
then what should I do for child element? Instead of that, do i need to add padding for parent - to properly place the child! – Avi C Nov 12 '11 at 8:25
thnx man, padding worked with child element. answer added. – Avi C Nov 12 '11 at 8:48
no, you don't have to set padding for child element, as padding to parent. The idea is more like, you supply both (child element + child element layout params) to the parent- as in the addView line. – hovanessyan Nov 12 '11 at 11:01
feedback
up vote 1 down vote accepted

simple solution-

searchPin = (ImageView) findViewById(R.id.waypts_search_pin);
searchPin.setPadding(135, 176, 0, 0);
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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