Android 布局问题

发布于 2024-11-30 14:21:10 字数 145 浏览 1 评论 0原文

我尝试创建一个 edittext 文本框,它将使用 WRAP_CONTENT 方式自动计算宽度和高度。但是,在某些时候我需要编辑文本的实际高度,但我尝试使用布局参数和 getWidth()、getHeight(),但没有返回我需要的值。

有人知道我该怎么做吗?

I tried to create an edittext textbox that will compute the width and height automatically by using the WRAP_CONTENT way. However, at some point of time I will need the actual height of the edit text, but I tried using layout params and getWidth(), getHeight(), I am not being returned with the values I will require.

Anyone have got any idea how can I go about this?

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

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

发布评论

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

评论(1

青衫儰鉨ミ守葔 2024-12-07 14:21:10

您需要先调用 view.layout() ,然后调用 view.measure() ,以便在实际“布局”之前可以使用这些值并显示在屏幕。

不过,您需要小心使用wrap_content,因为如果您的内容尚未出现在视图中,它将不会返回您正在查找的值。

希望这有帮助。

You need to call view.layout() and then view.measure() in order for those values to be available to you prior to actual "layout" and display on the screen.

You need to be careful with wrap_content, though, because if your content is not already present in the view, it will not return the values you're looking for.

Hope this helps.

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