Ajay
Ajay

Reputation: 61

How to set Rounded Border for Blackberry BitmapField

I trying to set rounded border for Blackberry Bitmap field.But it is not working for me. I overriding paint method of Bitmap field.

g.drawRoundRect(0,0,HomeScreenIcons.barcode.getWidth(),HomeScreenIcons.barcode.getHeight(), 10, 10);

How can i set Border for Bitmap field in Blackberry.

Upvotes: 1

Views: 1175

Answers (1)

Suraj Air
Suraj Air

Reputation: 2113

You can give a try this way:

BitmapField bitf = new BitmapField();
bitf.setBorder(BorderFactory.createRoundedBorder(new XYEdges(6,6,6,6)));

Hope this helps...

Upvotes: 2

Related Questions