Blackberry 减小字体大小以适合列表字段行

发布于 2024-08-06 02:07:36 字数 103 浏览 1 评论 0原文

我正在使用 ListField 来绘制文本,问题是如果文本的大小大于屏幕宽度,则剩余的文本不会出现。有什么方法可以减少文本内容为的特定行的字体大小更多内容以适合 ListField 绘图区域。

i am using the ListField for drawing the text ,Problem is if the size of the text is more then the screen width the remaining text is not appearing.Is there any way where i can reduce the font size for a particular rows whose text content is more to fit in to the ListField drawing region.

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

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

发布评论

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

评论(1

夏末染殇 2024-08-13 02:07:36

在 ListFieldCallback 代码中,您将有一个 drawListRow() 方法。选择那里的字体:

public void drawListRow(ListField list, Graphics g, int index, int y, int w) 
{
    // Set text to draw in textString:

    String textString = ...
    Font smallerFont = FontFamily.forName(FontFamily.FAMILY_SYSTEM).getFont(fontStyle,
        fontSize);
    g.setFont(smallerFont);
    g.drawText(textString, 0, y, DrawStyle.TOP|DrawStyle.LEFT, w);
}

In your ListFieldCallback code you will have a drawListRow() method. Select the font there:

public void drawListRow(ListField list, Graphics g, int index, int y, int w) 
{
    // Set text to draw in textString:

    String textString = ...
    Font smallerFont = FontFamily.forName(FontFamily.FAMILY_SYSTEM).getFont(fontStyle,
        fontSize);
    g.setFont(smallerFont);
    g.drawText(textString, 0, y, DrawStyle.TOP|DrawStyle.LEFT, w);
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文