Android 布局问题
我尝试创建一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要先调用
view.layout()
,然后调用view.measure()
,以便在实际“布局”之前可以使用这些值并显示在屏幕。不过,您需要小心使用wrap_content,因为如果您的内容尚未出现在视图中,它将不会返回您正在查找的值。
希望这有帮助。
You need to call
view.layout()
and thenview.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.