Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have used the ObjectChoiceField in my application. The choice are very long, mostly the choices are of two line which increases the height of the ObjectChoiceField and makes my UI unstable. I had used "single line = true" property in Android which allows long text line to show in ellipses(...).

Can I do that in BlackBerry as don't want to change the height on run time. Also I don't want to use custom ObjectChoiceField. please suggest me according to my conditions what can I do.

Currently I am using follwing code.

ObjectChoiceField _productLineOCF =new ObjectChoiceField("",_productLineArray,plSetTo1,Field.FIELD_RIGHT){
    protected void layout(int width, int height) {
        setMinimalWidth(width - 61);
        super.layout(width, height);
    }
};

Sample output of the above code:

Sample output

share|improve this question

1 Answer

up vote 6 down vote accepted

Try this,

String choices[] = {
        "Choice 1 - Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.",
        "Choice 2",
        "Choice 3" };

long styleBit = Field.FIELD_RIGHT | ObjectChoiceField.FORCE_SINGLE_LINE;

ObjectChoiceField ocf = new ObjectChoiceField("", choices, 0, styleBit) {
    protected void layout(int width, int height) {
        setMinimalWidth(width - 61);
        super.layout(width, height);
    }
};
share|improve this answer
Thanx a lot dear, you are really great mentor for me. the "styleBit" worked for me. I need to learn a lot and I am learning. Thanx again to you and developers community. – Sam-In-TechValens May 31 '12 at 4:38

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.