我们如何在android运行时改变线性布局的宽度和高度?

发布于 2024-10-24 09:41:48 字数 58 浏览 1 评论 0原文

Guyz...请帮忙...给出正确的代码,因为我使用了这个问题的大部分示例,但我无法解决这个问题...

Guyz... Plz help.. Give the proper code because i use most of examples of this problem and i m not able to solve this problem ...

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

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

发布评论

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

评论(2

冰葑 2024-10-31 09:41:48

如何在android运行时改变线性布局的宽度和高度?

步骤#1:通过 getLayoutParams 获取 LinearLayoutLayoutParams ()。这些的实际类将取决于 LinearLayout 的父级。

步骤#2:修改 LayoutParams 中的值。

步骤#3:通过 设置 LinearLayout 的修改后的 LayoutParams setLayoutParams()

How can we change the width and height of linear layout during run time in android??

Step #1: Get the LinearLayout's LayoutParams via getLayoutParams(). The actual class for these will depend on the LinearLayout's parent.

Step #2: Modify values in the LayoutParams.

Step #3: Set the LinearLayout's modified LayoutParams via setLayoutParams().

三生一梦 2024-10-31 09:41:48

如果你想动态改变宽度/高度,你可以使用 LayoutParams

LinearLayour myLayout = new LinearLayout(this);
parentView.addView(myLayout, new LinearLayout.LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT));

If you want to change the width/height dynamically you'd use LayoutParams

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