Yatin
Yatin

Reputation: 3120

Regarding alignment of text in RichTextField

I have seen many Alignment But is their anything like Align Justify in Microsoft Word as in Blackberry for better viewing in Blackberry i know there is TEXT_ALIGN_HCENTER and others but is there like Align Justify in BB for text display in Blackberry?

Upvotes: 0

Views: 389

Answers (2)

Rajkiran
Rajkiran

Reputation: 259

use RichTextField.TEXT_ALIGN_HCENTER in RichTextField property.it work same as you need.

RichTextField textData = new RichTextField("sample text",RichTextField.USE_ALL_WIDTH |RichTextField.TEXT_ALIGN_HCENTER );

Upvotes: 1

techie
techie

Reputation: 467

Why dont u try this same logic for textfield as well.Hope it works!

     add(new LabelField(" Name ",LabelField.FIELD_HCENTER | LabelField.NON_FOCUSABLE));

Upvotes: 0

Related Questions