Can I use Android UI components in a Swing app?

Can I use Android UI components in a Swing app?

For example, to use the Android API directly in my Swing project so that I can use its user interface components.

thank

+3
source share
2 answers

This is not at all possible, Android is not Java, Android code and libraries and frameworks, and therefore they all work on Dalvik VM, other than Java Bytecode.

+4
source

No, It is Immpossible. These are two completely different animals.

+1
source

All Articles