Reputation: 3120
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
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
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