Building RingQt Applications for Mobile
In this chapter we will learn about Building RingQt Applications for Mobile.
Download Requirements
Check the next link : http://doc.qt.io/qt-5/androidgs.html
Download
The Android SDK Tools
The Android NDK (Tested using android-ndk-r10c)
Apache Ant v1.8 or later
Java SE Development Kit (JDK) v6 or later
Update the Android SDK
Update the Android SDK to get the API and tools packages required for development
Tested using Android 4.4.2 (API 19)
- In Windows - Define the next Environment Variables based on your system.
- JAVA_HOME
For Example : C:\Program Files (x86)\Java\jdk1.8.0_05
- ANDROID_HOME
For Example : B:\mahmoud\Tools\Java-Android\adt-bundle-windows-x86-20140702\sdk
Install Qt for Android
You can install Qt for Android from the next link
- Run Qt Creator, Select Tools > Options > Android to add the
Android NDK and SDK paths.
Using Qt Creator Open the project
Folder : ring/android/ringqt/project
Project file : project.pro
Using Qt Creator, You will find the compiled Ring application in resources/ringapp.ringo
This file (Ring Object File) is generated by the Ring compiler using
ring ringapp.ring -go -norun
- To run your application instead of the default application
Using Qt Creator, Add your application images to resources
Or You can use any text editor (Notepad) and modify : project.qrc
To find images from your Ring application, You need to use the file name in resources
Example
if isandroid()
mypic = new QPixmap(":/cards.jpg")
else
mypic = new QPixmap("cards.jpg")
ok
- In your Ring application folder (Using the command prompt)
ring myapp.ring -go -norun
- Add your file to the project project/myapp.ringo
- Update main.cpp and project.qrc and replace ringapp.ringo with myapp.ringo
- Build and Run your Application using Qt Creator
Comments about developing for Android using RingQt
The main project file is main.cpp
This file load Ring Compiler/Virtual Machine and RingQt
Then copy the Ring Object File during the runtime from the resources to temp. folder
Then run the Ring Object File (ringapp.ringo) using the Ring VM
Through main.cpp you can extract more files from the resources to temp. folder once you add them (create projects with many files).
The next functions are missing from this Ring edition
- Database (ODBC, SQLite & MySQL)
- Security and Internet functions (LibCurl & OpenSSL)
- RingAllegro (Allegro Library)
- RingLibSDL (LibSDL Library)
Just use Qt Classes through RingQt.
For database access use the QSqlDatabase Class
Note
All of the missing libraries ((LibCurl, OpenSSL & Allegro) can be compiled for Android, but they are not included in this Qt project.
- use if isandroid() when you want to modify the code just for android
Example:
if isandroid()
// Android code
else
// other platforms
ok
(4) Sometimes you will find that the button text/image is repeated in drawing ! it’s Qt problem that you can avoid using the next code.
if isandroid()
setStyleSheet("
border-style: outset;
border-width: 2px;
border-radius: 4px;
border-color: black;
padding: 6px;")
ok
- Always use Layouts instead of manual setting of controls position and size.
This is the best way to get the expected user interface to avoid problems like (controls with small/extra size)
- When you deal with Qt Classes you can determine the images from resources (you don’t need to copy them using main.cpp)
Example:
if isandroid()
mypic = new QPixmap(":/cards.jpg")
else
mypic = new QPixmap("cards.jpg")
ok
Now RingQt comes with the AppFile() function to determine the file name
Example:
mypic = new QPixmap(AppFile("cards.jpg")) # Desktop or Android
Using Ring2EXE
Starting from Ring 1.6 we can use Ring2EXE to quickly prepare Qt project for our application
Example:
ring2exe myapp.ring -dist -mobileqt