如何将视图添加到 LinearLayout,但从下向上?

发布于 2024-11-02 08:46:36 字数 50 浏览 4 评论 0原文

是否可以将视图逐个向上添加到 LinearLayout 中?

It is possible to add views to LinearLayout one after another in upward direction?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

暮年 2024-11-09 08:46:36

您可以通过以下方式以编程方式添加它:

LinearLayout layout = (LinearLayout) findViewById(R.id.layout);
layout.addView(newView, index);

您只需添加始终与索引= 0

这是您问题的答案吗?

You can add it programmatically with:

LinearLayout layout = (LinearLayout) findViewById(R.id.layout);
layout.addView(newView, index);

You just have to add always with index = 0

Is this the answer to your question?

驱逐舰岛风号 2024-11-09 08:46:36

如果你想以向上的方向(即从下到上)向 LinearLayout 添加视图,请使用

android:gravity="bottom"

LinearLayout 的 xml 中的属性,然后在布局中添加视图。
希望这能解决您的问题。

If you want to add views to LinearLayout in upward direction(i.e. from bottom to up) use

android:gravity="bottom"

property in the xml of LinearLayout and then add views in the layout.
Hope this will solve your problem.

む无字情书 2024-11-09 08:46:36

如果你想让你的视图保持在最前面,相对布局是另一个选择。

If you want to keep your views top, relativelayout is another choice.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文