int y2 = y1 * 2;
pen.setColor(Color.BLACK);
pen.drawLine(x1, 0, x1, height);
pen.drawLine(x2, 0, x2, height);
pen.drawLine(0, y1, width, y1);
pen.drawLine(0, y2, width, y2);
return bg;
}
public static Bitmap getBlankUnfocused() {
int width = Display.getWidth();