Running Java applets on Android

I am wondering if it is possible to run Java applications on Android? It would be very convenient if I could check a few things on the go when I only have my tablet with me. I've tried AIDE and it doesn't seem to work. Thank!

+3


source to share


1 answer


Well, you cannot run a Java applet on Android, but you can easily convert from a Java applet to an Android app. You just need to change the front level from swing to Android and maybe some listeners.



You cannot use Swing or Awt on Android.

+3


source







All Articles