Вы можете создать свой собственный класс расширений BitmapField и переопределить метод paintBitmap ().
Как это:
public class MyBitmapField extends BitmapField {
//...
protected void paintBitmap(Graphics g, int arg1, int arg2, int arg3,
int arg4, Bitmap arg5, int arg6, int arg7) {
super.paintBitmap(g, arg1, arg2, arg3, arg4, arg5, arg6, arg7);
g.drawText("Your text", 5,5 );
}
// ...
}
Также вы можете изменить drawFocus () , paintBackground () и другие.