gpt4 book ai didi

android - 运行时的动态布局变化

转载 作者:行者123 更新时间:2023-11-29 22:34:01 25 4
gpt4 key购买 nike

对于应用程序,我需要将一些对象放置在我想要的确切位置,因此这次我需要使用 AbsoluteLayout。

我想像在以下 XML 中一样动态添加按钮 - 但在运行时。

<AbsoluteLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<Button
android:id="@+id/backbutton"
android:text="TEST123"
android:layout_x="120px"
android:layout_y="120px"
android:layout_width="100px"
android:layout_height="100px" />
</AbsoluteLayout>

我该如何存档?我尝试用下面的代码来添加一个按钮,但是到目前为止我还没有找到设置layout_x和layout_y的函数。我怎样才能做到这一点?谢谢。

AbsoluteLayout al = new AbsoluteLayout(this);
Button t = new Button(this);
t.setHeight(300);
t.setWidth(300);
t.setText("TEST123");
// x y ???
setContentView(al);

最佳答案

将 View 添加到布局时,可以提供LayoutParams ,这是您为 View 指定布局信息的地方。

但是,AbsoluteLayouts 已被弃用,这是有充分理由的。您将如何处理不同的屏幕尺寸和分辨率?您应该能够使用未弃用的布局对象的组合来创建您正在寻找的布局。参见 developer docs作为起点。

如果您更详细地描述您的目标,应该有人能够帮助您选择合适的布局。

关于android - 运行时的动态布局变化,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2901333/

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