Android - 在特定索引处添加带有布局参数的子视图(在代码中)
我可能遗漏了一些东西,但我找不到一种方法来将子视图添加到具有特定布局参数的指定索引处的视图。有 addView(View v, LayoutParams lp)
和 addView(View v, int index)
- 但我找不到指定两者的方法。
我缺少什么?
I may be missing something, but I can't find a way to add a subview to a view at a specified index with specific layout params. There's addView(View v, LayoutParams lp)
and there's addView(View v, int index)
- but I can't find a way to specify both.
What am I missing?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
为什么,有一个方法同时具有两者:
addView(View child, int index, ViewGroup.LayoutParams params)
: 此处。Why, there's a method with both:
addView(View child, int index, ViewGroup.LayoutParams params)
: Here.这是一个例子。我用它在任何视图上显示进度指示器。
这是一个示例布局文件(id 是 R.layout.progressindicator)
如果您还想动态更改布局,则可以调用布局中元素的方法。像这样:
Here is an example. I use it to show a progress indicator on any view.
Here is a sample layout file (id is R.layout.progressindicator)
Just in case you want to change the layout also dynamically then you can call the methods of the elements in the layout. Like this: