如何使用Blackberry中的自定义标签字段在多行显示文本?

时间:2012-10-05 09:48:23

标签: blackberry labelfield

如何使用Blackberry中的自定义标签字段以多行显示文字? 当我使用下面的代码时,我可以显示具有所需字体大小的标签,但是问题是当范围受到宽度限制时文本被切断而不能完全显示,标签部分的其余部分也不会显示在下一行。

欢迎任何帮助。

以下是我的自定义标签字段代码。

public class GrayBgLabelField extends LabelField {  

    private int width = Display.getWidth();
    private int height = 40;
    private String label;   
    private Font font;

    public GrayBgLabelField(){
        super();
    }

    public GrayBgLabelField(String label, int fieldWidth){
        super(label, 0 );
        this.label = label;
        width = fieldWidth;     
    }

    public GrayBgLabelField(String label, int fieldWidth , long style){
        super( label, style );
        this.label = label;
        width = fieldWidth;     
    }

    public GrayBgLabelField(String label, int fieldWidth , int fieldHeight){

        this(label,fieldWidth);
        this.label = label;
        height = fieldHeight;
    }

    public GrayBgLabelField(String label, int fieldWidth , int fieldHeight, long style){

        super( label, style );
        this.label = label;
        width = fieldWidth;
        height = fieldHeight;
    }

    protected void layout( int maxWidth, int maxHeight)
    {         
        super.layout( width, height);  
        setExtent( width, height);
    }

    protected void paint(Graphics g) {

        if(font !=null){
            g.setFont(font);
        }

        if (label.length() != 0) {          
            g.drawText(label, width/30, height/4);
        }
        g.setColor(Color.BLACK);

    }

    public void setFont(int f){
        font = this.getFont().derive(f);        
    }

    public void setFont(Font font){
        this.font = font;
    }

    protected void paintBackground(Graphics g) {
        int oldColor = g.getColor();
        try {
            g.setColor(0xF5F6F8);  // Gray-DDDDDD color code.
            g.fillRect(0, 0, getWidth(), getHeight());          
        } finally {
            g.setColor(oldColor);
        }
    }
}

1 个答案:

答案 0 :(得分:2)

覆盖控制自定义字段宽度和高度的方法。

以下是教程:"How to create a custom field"

当您更改标签字段文本时,通过invalidate()方法使其无效,以重绘屏幕上的字段内容。