gpt4 book ai didi

java - 将 "below"添加到线性布局 LayoutParams

转载 作者:行者123 更新时间:2023-12-01 23:20:13 24 4
gpt4 key购买 nike

我的主要(层次结构中最高的)布局是 RelativeLayout 。在其中,我以编程方式创建一个 LinearLayout 。它必须具有“低于”的属性 button1 。我知道如何使用addRule()将其添加到 RelativeLayout.LayoutParams ,但是LinearLayout.LayoutParams没有这个选项。

最佳答案

LinearLayout 不能具有以下属性。最多可以指定垂直或水平方向类型。例如

LinearLayout layout = /* ... */;
layout.setOrientation(LinearLayout.VERTICAL);
//OR
layout.setOrientation(LinearLayout.HORIZONTAL);

关于java - 将 "below"添加到线性布局 LayoutParams,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20731867/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com