user2323709
user2323709

Reputation: 1

Can we convert Android Apps to J2ME

I have already application designed for Android Phone (with source code). I wanted run this application on J2ME, Is there any direct conversion available or shall I need to start creating new Apps for J2ME ?

Upvotes: 0

Views: 1109

Answers (1)

Vigbyor
Vigbyor

Reputation: 2604

There is no such tool available which can directly convert your Android application into Java ME application. You must need to manually create one Java ME application.

There are some reasons behind it. Few of are ..

  1. In J2ME, Midlet interop (no "intents")
  2. Impossible to implement alpha-blending, canvas transformation, etc.
  3. 3rd party library integration which are only compatible with Android.

Possible things are,

  1. Drawable to refer
  2. Layout XML files rendering
  3. Most of code logic
  4. Web Service and Bean classes

Upvotes: 1

Related Questions