So I built a program in Java using swing for the interface and i didn\'t realize how difficult it would be to convert it to be used as an android application. Is there any w
What I would do is that I would build the UI in XML, then I give the items an ID and reference to it in Java, and then I'll trigger everything by button clicks so what one button does in your swing layout does the same on android. You can't copy/paste it.