Have an amazing solution built in RAD Studio? Let us know. Looking for discounts? Visit our Special Offers page!
Delphi

Mobile app lifecycle events handling in Delphi XE5

Author: Pawe Gowacki

The lifecycle of a mobile app is more complex and different from a desktop app. On a mobile device an application runs either in the foreground or in the background. When a phone calls arrive or when user opens another app, our app is going to background. If you are a programmer, you might be interested in responding to changes in the application state, for example saving current app state when your app goes into the background or refreshing the screen after moving into foreground.

Main two mobile operating systems, iOS and Android, fully support multitasking as their UNIX ancestor does. You would be surprised how many apps are constantly executing on your mobile device. On iOS just press the button below the screen twice, and a toolbar at the bottom of the screen will popup showing all executing apps. On Android devices you can also see all executing apps, but how you access the Task Manager may vary across devices. On my Nexus 7 tablet there is a special button next to “Home” button at the bottom of the screen to show the list of currently running apps.

The lifecycle of the application on Android is slightly different than on iOS. At the “developer” sections of web sites for both platforms you can find lifecycle charts. I have included them here for convenience.

Android app lifecycle is described at the http://developer.android.com/reference/android/app/Activity.html

iOS app lifecycle is described at the https://developer.apple.com/library/ios/documentation/iphone/conceptual/iphoneosprogrammingguide/ManagingYourApplicationsFlow/ManagingYourApplicationsFlow.html

Delphi XE5 makes it possible use the same source code and just recompile your mobile app for Android or for iOS. There are differences in architecture of different services on different platforms. The FM Component Platform, also known as “FireMonkey”, contains “FMX.Platform” unit, which provides common interfaces to services on different platforms. It also contains an interface definition of a “IFMXApplicationEventService” that makes it possible register an event handler to receive app lifecycle events.

I just could not resist and decided to build a simple demo project to see what kinds of events my Delphi Mobile FireMonkey app would receive on different devices!

In your application code you need to define a function with the same signature as “TApplicationEventHandler”. Basically it can be any function that takes “TApplicationEvent” and “TObject” parameters and returns “boolean”.

Than you need to retrieve a reference to “IFMXApplicationEventService” from a global “TPlatformServices” class and register the app lifecycle event handler passing the reference to our event handler function as a parameter to “SetApplicationEventHandler” method of the service.

The “TPlatformServices” class contains “class” property called “Current” that returns the reference to “TPlatformServices” global, singleton implementation, so there is no need to instantiate it in our code.

Depending on the platform certain services may or may not be implemented, so you always need to check whether a given service is available. It is easy to use the following patterns to obtain references to different FireMonkey platform services. If the service is implemented in the “IFMXAService” interface, than we could use the following code snippet to access it:

Below is full code for a simple demo form that just registers the app lifecycle event handler and the handler itself displays the name of the lifecycle event and the time it was received in a memo component.

In the experiment I have compiled the application for “iOS Device” and “Android” targets. When the demo app started on the device, I have switched to another app and then back to the demo app.

In both cases the app has received “Became Active”, “Entered Background” and “Will Become Foreground” events. On Android the demo app additionally received “Finished Launching” event at the beginning of the execution “Will Become Inactive” just before receiving “Entered Background”.

Below there are screenshots from my iPhone 4S running iOS 6 and Nexus 2013 tablet running Android 4.3 running “LifecycleDemo” project.

The FM Component Framework (“FireMonkey”) provides common abstractions for different functionality supported on different operating systems. In this way we do not need to maintain different code bases for working with different APIs! This also means hiding the underlying complexity of individual API from a programmer, so the application code can be simpler and more easy to understand and maintain!

There are more cool services to explore in the “FMX.Framework” unit! Give it a try:-)

The source code for the “LifecycleDemo” can be downloaded from Code Central.


Reduce development time and get to market faster with RAD Studio, Delphi, or C++Builder.
Design. Code. Compile. Deploy.
Start Free Trial   Upgrade Today

   Free Delphi Community Edition   Free C++Builder Community Edition

Leave a Reply

This site uses Akismet to reduce spam. Learn how your comment data is processed.

IN THE ARTICLES