Reputation: 6544
Im running an j2me app on android. Im aware that form runs in fullscreen, but since on android all actions are in menu i would like to get rid of the action buttons on form.
How can i do that?
Upvotes: 0
Views: 328
Reputation: 1
You can use an automatic conversion tool from J2ME to Android. UpOnTek provides an automatic conversion tool, which includes optimization tips for the app. Take a look at www.UpOnTek.com or contact [email protected] for more details.
Upvotes: 0
Reputation: 89576
You should write a native Android app. Running J2ME apps on Android is never a good idea:
Try porting your J2ME app to the Android SDK. Keep only the non-interface stuff (any calculations, api libs, etc.) and rewrite the interface stuff using the Android SDK. It's a bit more work, but it will be completely worth it.
Upvotes: 2