Which java technology is used to develop android apps?
Can I develop it 开发者_运维百科on J2SE or J2ME is important?
No. Dalvik uses its own class libraries.
Android doesn't use JavaME or JavaSE. It doesn't run on a JVM, but on Dalvik, a specific virtual machine.
Though, the Android framework is very similar to JavaSE, apart from graphical and security libraries, which are specific. And all OpenGL ES related classes are the same as in JavaME.
J2SE works and android SDK. http://developer.android.com/sdk/installing.html
精彩评论