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

Android动态添加控件约束位置

时间:2015-06-04 12:02:48      阅读:1021      评论:0      收藏:0      [点我收藏+]

标签:android   添加位置   

用LayoutParams:
 
RelativeLayout insertLayout = (RelativeLayout)view1.findViewById(R.id.screen);//screen是一个RelativeLayout 布局的id

ImageView imgApple2 = new ImageView(MainActivity.this);
				        imgApple2.setBackgroundColor(Color.parseColor("#ffb6b4"));

RelativeLayout.LayoutParams layoutParams = new RelativeLayout.LayoutParams(100, 100);
        layoutParams.topMargin=8;
        layoutParams.leftMargin=8;
        layoutParams.rightMargin=8;
        layoutParams.bottomMargin=8;

insertLayout.addView(imgApple2,layoutParams);

Android动态添加控件约束位置

标签:android   添加位置   

原文地址:http://blog.csdn.net/darongzi1314/article/details/46356199

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