我尝试为Blackberry Bitmap字段设置圆形边框。但它不适合我。 我重写了Bitmap字段的paint方法。
g.drawRoundRect(0,0,HomeScreenIcons.barcode.getWidth(),HomeScreenIcons.barcode.getHeight(), 10, 10);
如何在Blackberry中为位图字段设置边框。
答案 0 :(得分:2)
你可以这样试试:
BitmapField bitf = new BitmapField();
bitf.setBorder(BorderFactory.createRoundedBorder(new XYEdges(6,6,6,6)));
希望这会有所帮助......