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.

This problem is related to positioning objects on the screen. I have a dynamic creation of framelayout with layout params as given below

 FrameLayout fl=new FrameLayout(getApplicationContext());
 LayoutParams frameBounds=new FrameLayout.LayoutParams(500,500);
 fl1.setLayoutParams(frameBounds);
 Button b=newButton(this);
 b.setMargins(0,0,200,200);

I tried this it works but my button tends to stick around top left corner. Is there any way to position the button by considering only the right and bottom values irrespective of the left and top values. In short i want the right corner of the button to be at a distance of 200 from the right corner of framelayout(500). Help PLZ...

share|improve this question

1 Answer

up vote 1 down vote accepted

You must set the gravity on bottom|right. Then, will put the margins 200.

share|improve this answer
I didnt thought it was that easy... Thanks Piperoman Thanks U rock... – AMUL Dec 21 '11 at 17:12

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.