博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
在代码中设置RelativeLayout布局中标签的android:layout_toLeftOf、android:layout_toRightOf等属性...
阅读量:6324 次
发布时间:2019-06-22

本文共 1332 字,大约阅读时间需要 4 分钟。

 

//转载一个布局文件,要向这个布局汇总动态添加一个buttonRelativeLayout relativeLayout(RelativeLayout)getLayoutInflater().inflate(R.layout.main,null);//装载要动态添加的按钮布局Button button = (Button)getLayoutInflater().inflate(R.layout.button,null); //创建一个LayoutParams对象 RelativeLayoutLayoutParamslayoutParams= new RelativeLayout。LayoutParams(ViewGroup.LayoutParams.WRAP_CONTENT,ViewGroup.LayoutParams.WRAP_CONTENT); layoutParams.addRule(RelativeLayout.RIGHT_OF,R.id.button1); layoutParams.addRule(RelativeLayout.BELOW,R.id.button); button.setLayoutParams(layoutParams); relativeLayout.addView(button);
你可能感兴趣的文章
Android中的关于MDM中的几个方法举例
查看>>
optimize table tablename
查看>>
树五:二叉搜索树的后序遍历序列
查看>>
laravel 表单提交注意数据到达的方法
查看>>
东软HIS切换输入法卡死的解决方法
查看>>
vc 使用SetWindowPos改变窗体的大小,实现折叠,展开
查看>>
关于windows修改远程登录端口的问题
查看>>
安装CocoaPods学习
查看>>
async 常用函数总结
查看>>
过渡函数transition-timing-function
查看>>
http与websocket(基于SignalR)两种协议下的跨域基于ASP.NET MVC--竹子整理
查看>>
转:备忘---PHP 5.5 新特性
查看>>
Java面试题(一)
查看>>
tomcat远程调试
查看>>
并发编程 --进程
查看>>
C# 实现数字字符串左补齐0的两种方法
查看>>
购物车测试点
查看>>
搭建Hexo博客
查看>>
Pascal之Hello World
查看>>
Leetcode题目:Range Sum Query - Immutable
查看>>