动态计算View元素的大小

发布于 2024-11-10 08:21:05 字数 169 浏览 4 评论 0原文

我有未知数量的 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 技术交流群。

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

发布评论

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

评论(2

感情废物 2024-11-17 08:21:06

要获取布局的高度,您必须在 onWindowFocusChanged() 方法中编写代码。
首先在onCreate()方法中获取布局,然后编写以下代码。

@Override
public void onWindowFocusChanged(boolean hasFocus) {
    // TODO Auto-generated method stub
    super.onWindowFocusChanged(hasFocus);
    System.out.println("...111Height..."+mainLayout.getMeasuredHeight());
}

谢谢
迪帕克

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.

@Override
public void onWindowFocusChanged(boolean hasFocus) {
    // TODO Auto-generated method stub
    super.onWindowFocusChanged(hasFocus);
    System.out.println("...111Height..."+mainLayout.getMeasuredHeight());
}

Thanks
Deepak

呆橘 2024-11-17 08:21:06

您可以通过给出以下内容来获取视图的当前宽度:

String s = tv.getText().toString(); //tv is my textview name
float currentWidth = tv.getPaint().measureText(s);

要获取手机密度,请给出:

float phoneDensity = this.getResources().getDisplayMetrics().density;

当您执行 currentWidth *phoneDensity 时,您将根据您的设备获得宽度。

You can get the current width of a view by giving:

String s = tv.getText().toString(); //tv is my textview name
float currentWidth = tv.getPaint().measureText(s);

To get the phone density, give:

float phoneDensity = this.getResources().getDisplayMetrics().density;

When you do currentWidth * phoneDensity you get the width based upon your device.

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