I have a fully functional Java program that is quite long, and I want to port it to an Android tablet. This is my first lesson for Android. I know that this requires a different type of Java (or something else that is characteristic of it), but I still don't want to rewrite this ALL thing. Are there any simple swaps or equivalent things to import for my Android app? Here is the import that I have in the current program:
import java.awt.*; import java.util.*; import java.awt.event.*; import java.awt.geom.*; import java.awt.color.*; import java.awt.image.BufferedImage; import javax.swing.*; import java.io.*; import java.text.*; import javax.imageio.ImageIO;
Any other tips or links on this subject would be appreciated.
source share