动态计算View元素的大小
我有未知数量的 TextView 元素、一些 EditText 元素等,它们都放置在一个线性布局中...并且我想在运行时计算布局的高度,以便我可以获得不同的精确大小(以像素为单位)分辨率屏幕。有些编辑框可以包含比其他编辑框更多的文本,因此它们的大小会更大...... 是否有可能在运行时计算布局的大小?
谢谢
I have a unknown number of TextView elements some EditText elements and so on, that are all placed in one linear layout... And I want to calculate the height of the layout at run time so I can get the exact size in pixels for different resolution screens. Some editboxes can contain more text then other so their size will be bigger...
Is there possibility to calculate the size of a layout at runtime ?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
要获取布局的高度,您必须在 onWindowFocusChanged() 方法中编写代码。
首先在
onCreate()
方法中获取布局,然后编写以下代码。谢谢
迪帕克
To get height of layout you have to write the code in onWindowFocusChanged() method.
First get the layout in
onCreate()
method then write the following code.Thanks
Deepak
您可以通过给出以下内容来获取视图的当前宽度:
要获取手机密度,请给出:
当您执行
currentWidth *phoneDensity
时,您将根据您的设备获得宽度。You can get the current width of a view by giving:
To get the phone density, give:
When you do
currentWidth * phoneDensity
you get the width based upon your device.