No apperance yet but at least it can be focuses, selected and clicked.
Btw, I found something like strange in
core/src/org/microemu/device/j2se/J2SEInputMethod.java
if (keyCode == KeyEvent.VK_UP || keyCode == KeyEvent.VK_DOWN)
I guess it should be
if (keyCode == getKeyCode(Canvas.UP) (keyCode == getKeyCode(Canvas.DOWN)))
patch file
Logged In: YES
user_id=248825
Originator: NO
Remarks:
1. I strongly recommend working with SVN trunk if you want to contribute patches to the project, currently it is quite stable.
2. J2SEInputMethod.java issue was already fixed in SVN trunk.
3. Canvas.java - according to MIDP it is not allowed to create public getWidth/getHeight methods.
4. ImageItem.java and StringItem.java are focusable only in HYPERLINK and BUTTON appearance mode (have you tested Simple Demo with your patch?).