Using Qt with Native Android application
Unsolved
Mobile and Embedded
-
I have my own Application and Activity class in android. Now, I want to use Qt as a library for GUI framework, in my application.
I went through the code of Qt, and found that it has its own QtApplication and QtActivity class, which acts as the entry point of the application and starts the event loop.
Now, since the entry point in my Application class, how do I invoke and use QtApplication/QtActivity without changing the codebase of Qt ?Basically, I have my own entry point and do not wish to use the entry point of Qt. In such a scenario, how can I go about it without making changes to Qt's codebase ?
Any suggestions/pointers will help.