在运行时设置布局参数
我有一个页面数组,每个页面都包含内容和特定的布局。 我有一个水平寻呼机,可以在滚动页面时在页面之间切换。
我的问题是,如何在运行时设置 LinearLayout 的宽度和高度,以便正确设置页面?
Atm 将 LinearLayout 设置为横向模式的 1024 像素宽度 768 像素高度。这应该改变。
I have an array of Pages, each Page contains content and a specific layout.
I have a Horizontal Pager that can switch between pages when scrolling through them.
My question is, how do I set the width and height of the LinearLayout at runtime so the Page is set properly??
Atm the LinearLayout is set to 1024px width 768px height for landscape mode. This should be changed.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我知道怎么做了。应该更好地阅读文档。
fl.setLayoutParams(new FrameLayout.LayoutParams(宽度, 高度));
I found out how to do it. Should've read the docs better.
fl.setLayoutParams(new FrameLayout.LayoutParams(width, height));