0
圖片邊框我有BB屏幕列表中的項目(圖像和文本), 我的要求是設置圖像邊框(這樣的圖像分離將在列表項目完成)圖像BB屏幕 任何人都可以幫忙嗎?如何設置黑莓屏幕
這裏我的代碼:
public void drawListRow(ListField list, Graphics g, int index, int y,
int width) {
String title = (String) listElements.elementAt(index);
Bitmap image = (Bitmap) listImage.elementAt(index);
int LEFT_OFFSET = 2;
int TOP_OFFSET = 8;
int xpos = LEFT_OFFSET;
int ypos = TOP_OFFSET + y;
int w = image.getWidth();
int h = image.getHeight();
g.drawBitmap(xpos, ypos, w, h, image, 4, 6);
xpos = w + 20;
g.setFont(myFont);
g.setColor(Color.BLACK);
g.drawText(title, xpos, ypos);
}
你需要什麼幫助?看起來你已經有了正在使用的繪圖代碼 - 只需更改x,y位置即可爲位圖添加更多邊框。 – 2013-03-01 19:58:30
@MichaelDonohue謝謝.... – String 2013-03-04 04:56:22