如何将视图添加到 LinearLayout,但从下向上?
是否可以将视图逐个向上添加到 LinearLayout
中?
It is possible to add views to LinearLayout
one after another in upward direction?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以通过以下方式以编程方式添加它:
您只需添加始终与索引= 0
这是您问题的答案吗?
You can add it programmatically with:
You just have to add always with index = 0
Is this the answer to your question?
如果你想以向上的方向(即从下到上)向 LinearLayout 添加视图,请使用
LinearLayout 的 xml 中的属性,然后在布局中添加视图。
希望这能解决您的问题。
If you want to add views to LinearLayout in upward direction(i.e. from bottom to up) use
property in the xml of LinearLayout and then add views in the layout.
Hope this will solve your problem.
如果你想让你的视图保持在最前面,相对布局是另一个选择。
If you want to keep your views top, relativelayout is another choice.