如何在Relativelayout中动态设置控件位置
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何在Relativelayout中动态设置控件位置相关的知识,希望对你有一定的参考价值。
参考技术A 用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 RelativeLayout代码中动态设置相对布局里控件的位置
参考技术A 设置imageButtonCursor在底部(因为之前此控件是依附A控件来设定位置的,根据需求A控件要隐藏掉,当A控件隐藏的时候,imageButtonCursor会跑位,所以要这样动态设置)这里要说名的是 imageButtonCursor的父布局是RelativeLayout 否则getLayoutParams强转会报错的
R.id.horizontalScrollView1为A控件(根据需求此时A控件要显示)显示出来后
imageButtonCursor有要根据A控件去找位置 因为之前设置imageButtonCursor显示在底部 如果不清除这个位置则 设置的相对位置则是无效的 17以上可以用removeRule的方法 为了兼容只能用
以上是关于如何在Relativelayout中动态设置控件位置的主要内容,如果未能解决你的问题,请参考以下文章
android RelativeLayout代码中动态设置相对布局里控件的位置
请教如何设置 android RelativeLayout 控件之间没有间距