码迷,mamicode.com
首页 > 移动开发 > 详细

android如何在代码中设置margin

时间:2014-10-29 17:05:31      阅读:207      评论:0      收藏:0      [点我收藏+]

标签:android   blog   http   ar   java   on   2014   log   代码   

1.首先要看下你要设置的这个组件的父容器是什么。比如我的是FrameLayout里面包含的一个组件。假如叫bottomLayout那么就是:


FrameLayout.LayoutParams lp = new FrameLayout.LayoutParams(ViewGroup.LayoutParams.WRAP_CONTENT, ViewGroup.LayoutParams.WRAP_CONTENT);
		lp.setMargins(0,100,0,0);
		bottomLayout.setLayoutParams(lp);

这里setMargins的几个参数的意义分别是 左上右下

android面试题视频讲解

android如何在代码中设置margin

标签:android   blog   http   ar   java   on   2014   log   代码   

原文地址:http://blog.csdn.net/howlaa/article/details/40587947

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!