android RelativeLayout代码中动态设置相对布局里控件的位置

android RelativeLayout代码中动态设置相对布局里控件的位置,第1张

设置imageButtonCursor在底部(因为之前此控件是依附A控件来设定位置的,根据需求A控件野蚂要隐藏掉,当A控件隐藏的时候,imageButtonCursor会跑位,所以要这样动态设派脊饥置)

这里要说名的尘返是 imageButtonCursor的父布局是RelativeLayout 否则getLayoutParams强转会报错的

R.id.horizontalScrollView1为A控件(根据需求此时A控件要显示)显示出来后

imageButtonCursor有要根据A控件去找位置 因为之前设置imageButtonCursor显示在底部 如果不清除这个位置则 设置的相对位置则是无效的 17以上可以用removeRule的方法 为了兼容只能用

先定义出想要的控件,给这银森答个控件里填加相应的属性,然后定义一个布局,把控件添加到布局里面,再把这个布局导入到界面春兆里,代码如下:锋慧

RelativeLayout.LayoutParams

layoutParams

=

new

RelativeLayout.LayoutParams(100,

100)

layoutParams.topMargin=8

layoutParams.leftMargin=8

layoutParams.rightMargin=8

layoutParams.bottomMargin=8

insertLayout.addView(imgApple2,layoutParams)

参考如下

用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)


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/bake/11971470.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-20
下一篇 2023-05-20

发表评论

登录后才能评论

评论列表(0条)

保存