Android上运行QT项目Necessitas的基本原理
by 宋宝华 <[email protected]>
There is a project named Necessitas (by BogdanVatra)which implements a basic support of creating and running QT applications onAndroid. It also provides a user-friendly Qt Creator Integration with Android:
DowloadSDK: http://sourceforge.net/projects/necessitas/files/
NecessitasSourcecodes:
git clone https://git.gitorious.org/~taipan/qt/android-lighthouse.git
git clone git://gitorious.org/~taipan/qt-creator/android-qt-creator.git
The basic architecture of this project issomething like:
A QT application is bound with Android Activity, then it will follow the Android process life cycle. At the same time, there is aframebuffer/input adapter between QT and Android.
read the source code:
http://qt.gitorious.org/qt/blacktass-android-lighthouse/blobs/ed10b2237ebbeeacf6243a462a7b157be028a691/src/android/java/com/nokia/qt/QtActivity.java
We know clearly about the relationship QtApplication and QtActivity in Android.