BlackBerry - 屏幕中 LabelField 的水平对齐

发布于 2024-08-14 18:52:14 字数 395 浏览 9 评论 0原文

我想添加一个新的 LabelField(String label, long style) 但如果我使用 Field.FIELD_HCENTER 作为我的样式,那么我会得到以下对齐方式。

|---- This text is horizontally aligned but in ----|
|---- a block.

但我想要的是;

|---- This text is horizontally aligned and ----|
|------- independently so for each line --------|

这个实现起来简单吗?我找不到场常数来让它为我工作。

预先感谢,

加夫

I want to add a new LabelField(String label, long style) but if I use Field.FIELD_HCENTER as my style then I get the following alignment.

|---- This text is horizontally aligned but in ----|
|---- a block.

But what I want is;

|---- This text is horizontally aligned and ----|
|------- independently so for each line --------|

Is this simple to achieve? I can't find the field constant to get this to work for me.

Thanks in advance,

Gav

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

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

发布评论

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

评论(1

流云如水 2024-08-21 18:52:14

尝试 DrawStyle.HCENTER< /a>

替代文本 http://img521.imageshack.us/img521/6245/9000。 jpg

class Scr extends MainScreen {
    String mText = "Lorem ipsum dolor sit amet, "
            + "consectetur adipiscing elit. Sed adipiscing "
            + "dui quis velit placerat vulputate.";
    LabelField mLabel = new LabelField(mText, DrawStyle.HCENTER);

    public Scr() {
        add(mLabel);
    }
}

Try DrawStyle.HCENTER

alt text http://img521.imageshack.us/img521/6245/9000.jpg

class Scr extends MainScreen {
    String mText = "Lorem ipsum dolor sit amet, "
            + "consectetur adipiscing elit. Sed adipiscing "
            + "dui quis velit placerat vulputate.";
    LabelField mLabel = new LabelField(mText, DrawStyle.HCENTER);

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