如何在android中动态改变按钮的大小

发布于 2024-10-28 08:40:17 字数 48 浏览 1 评论 0原文

我尝试了 setWidth() 和 setHeight() 方法,但它们不起作用。

I tried the setWidth() and setHeight() methods, but they do not work.

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

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

发布评论

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

评论(3

但可醉心 2024-11-04 08:40:17

尝试使用 LayoutParams。例如

button.setLayoutParams(new LayoutParams(50, LayoutParams.WRAP_CONTENT)

Try using LayoutParams. For example

button.setLayoutParams (new LayoutParams(50, LayoutParams.WRAP_CONTENT)

呆萌少年 2024-11-04 08:40:17

对我来说这很完美:

    ViewGroup.LayoutParams params = myButton.getLayoutParams();
    //Button new width
    params.width = 400;

    myButton.setLayoutParams(params);

For me works perfect this:

    ViewGroup.LayoutParams params = myButton.getLayoutParams();
    //Button new width
    params.width = 400;

    myButton.setLayoutParams(params);
っ左 2024-11-04 08:40:17

我发现这是最好的解决方案,因为它还允许通过简单地更改其边距来同时重新定位按钮:

int buttonWidth = (int) (screenWidth / 3.0);
RelativeLayout.LayoutParams params = (LayoutParams) myButton.getLayoutParams();
params.width = buttonWidth;
params.leftMargin = buttonWidth;
myButton.setLayoutParams(params);

I found this to be the best solution because it also allows the button to be repositioned at the same time by simply changing its margin:

int buttonWidth = (int) (screenWidth / 3.0);
RelativeLayout.LayoutParams params = (LayoutParams) myButton.getLayoutParams();
params.width = buttonWidth;
params.leftMargin = buttonWidth;
myButton.setLayoutParams(params);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文