为什么在布局方法中使用Math.min

发布于 2024-11-09 01:38:11 字数 378 浏览 0 评论 0原文

为什么在下面的重写方法中使用 Math.min ?

   protected void layout(int width, int height) 
    {
        setExtent(Math.min( width, getPreferredWidth()), Math.min( height, getPreferredHeight()));
    }

我在这个问题中看到了这段代码 - BlackBerry - 带居中位图的 ButtonField

Why use Math.min in below overridden method ?

   protected void layout(int width, int height) 
    {
        setExtent(Math.min( width, getPreferredWidth()), Math.min( height, getPreferredHeight()));
    }

I seen this code in this question -
BlackBerry - ButtonField with centered Bitmap

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

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

发布评论

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

评论(1

∝单色的世界 2024-11-16 01:38:11

我发现这很有帮助 -
http://supportforums.blackberry.com/t5/Java-Development/Question-Regarding-setExtent-and-getPreferredWidth-for-Custom/td-p/469886

“请注意,这些值用于 setExtent 的值永远不应大于传递给布局的值。这些是字段可用的最大范围。”

I found this helpful -
http://supportforums.blackberry.com/t5/Java-Development/Question-Regarding-setExtent-and-getPreferredWidth-for-Custom/td-p/469886

"Note that the values used for setExtent should never be larger than the values passed in to layout. These are the maximum extent available to the field."

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