Can I Use Android Aide For Learning Java
Solution 1:
If you want to learn Java, then use a PC, not a mobile device.
While Android apps are written in Java, Android does not support the full set of Java APIs. For example, any program using awt classes will not run on Android, as Android's UI framework is completely different.
I would strongly suggest you use a PC and an IDE like Eclipse or IntelliJ to learn at least core Java before coming to Android app development. It will make your life much much easier if you know Java syntax and the basic core of the language well before you attempt Android development.
Here is a list of the Java packages that are included in the standard Java on your PC, but not part of the Android APIs (it may be a little outdated, but it should give you an idea of the differences):
java.applet
java.awt (exceptfor the font classes)
java.beans
java.lang.management
java.rmi
javax.accessibility
javax.activity
javax.imageio
javax.management
javax.naming
javax.print
javax.rmi
javax.security.auth.kerberos
javax.security.auth.spi
javax.security.sasl
javax.swing
javax.transaction
javax.xml (except javax.xml.parsers)
org.ietf.*
org.omg.*
org.w3c.dom.* (sub-packages)
Solution 2:
What you are asking for may be possible, but is not recommended.
Android programming requires a lot of specialized knowledge specifically about how to program for Android, and this requirement will get in your way when trying to learn basic Java.
Learn Java first, then, if desired, learn how to apply that knowledge to Android programming.
Post a Comment for "Can I Use Android Aide For Learning Java"