views:

105

answers:

1

Hi

I Have a Java application and I need to convert it to an Android application is there any resources to show how ? in Android developer site I didnt found anything like that!

I need to use the Java methods and classes in android ,How it can be done?

+1  A: 

Hi!

If you use the standard android SDK (http://developer.android.com/sdk/index.html) all code is already done in JAVA and should already work in android. Just follow the instructions to set up eclipse and android sdk tools and then import your code to an android project.

The only thing that must be changed is the GUI (graphical user interface) since it's different in android. Do the "hello world" tutorial and "Hello, Views" tutorial in the android sdk page that should put you in the right track of how you should do GUI's in android ;)

RicardoSBA
Thanx .. The problem has been solved.
I've created a new project and copied all the files again and it works!!