动态设置相对布局的布局参数
我需要帮助来动态更改 xml 中已存在的布局的布局参数,其中包含一些预定义的布局宽度和布局高度值。我想在我的 java 代码中动态地赋予这些一些新值。我正在使用以下代码,但出现错误并且不知道如何继续。请帮忙
RelativeLayout layout = (RelativeLayout)findViewById(R.id.CompLayout);
RelativeLayout.LayoutParams params = new RelativeLayout.LayoutParams(10,10);
layout.setLayoutParams(params);
请帮忙!!!!
I need help to dynamically change the layout parameters of a layout that already exists in the xml with some pre defined values for layout_width and layout_height . I want to give these some new values dynamically in my java code . i am using the following code but i get an error and don;t know how to proceed . please help
RelativeLayout layout = (RelativeLayout)findViewById(R.id.CompLayout);
RelativeLayout.LayoutParams params = new RelativeLayout.LayoutParams(10,10);
layout.setLayoutParams(params);
Please help !!!!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
xml 定义为
,代码为
xml is define as
and code is