Advertisement
Guest User

Untitled

a guest
Dec 10th, 2016
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. LayoutParams params = new LayoutParams(
  2. LayoutParams.WRAP_CONTENT,
  3. LayoutParams.WRAP_CONTENT
  4. );
  5. params.setMargins(left, top, right, bottom);
  6. yourbutton.setLayoutParams(params);
  7.  
  8. ((LinearLayout.LayoutParams)someView.getLayoutParams()).marginBottom = 150;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement