• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

Delphi IOS EnteredBackground

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

Mobile app lifecycle events handling in Delphi XE5

 

http://blogs.embarcadero.com/pawelglowacki/2013/09/30/40067/

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.

type
  TApplicationEvent = (aeFinishedLaunching, aeBecameActive, aeWillBecomeInactive,
    aeEnteredBackground, aeWillBecomeForeground, aeWillTerminate, aeLowMemory,
    aeTimeChange, aeOpenURL);

  TApplicationEventHandler = function(AAppEvent: TApplicationEvent; AContext: TObject): Boolean of object;

  IFMXApplicationEventService = interface(IInterface)
  [\'{F3AAF11A-1678-4CC6-A5BF-721A24A676FD}\']
    procedure SetApplicationEventHandler(AEventHandler: TApplicationEventHandler);
   end;

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:

 var aFMXAService: IFMXAService;
 begin
   if TPlatformServices.Current.SupportsPlatformService(IFMXAService, IInterface(aFMXAService)) then
   begin
   // call methods defined in the IFMXAService:
   // aFMXAService.AMethod;
   end
   else
   // FMXAService is not supported

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.

unit Unit11;

interface

uses
  System.SysUtils, System.Types, System.UITypes, System.Classes, System.Variants,
  FMX.Types, FMX.Controls, FMX.Forms, FMX.Graphics, FMX.Dialogs, FMX.Layouts,
  FMX.Memo, FMX.Platform, FMX.StdCtrls;

type
  TForm11 = class(TForm)
    Memo1: TMemo;
    ToolBar1: TToolBar;
    Label1: TLabel;
    procedure FormCreate(Sender: TObject);
  private
    procedure Log(s: string);
  public
    function HandleAppEvent(AAppEvent: TApplicationEvent; AContext: TObject): Boolean;
  end;

var
  Form11: TForm11;

implementation

{$R *.fmx}

{ TForm11 }

procedure TForm11.FormCreate(Sender: TObject);
var aFMXApplicationEventService: IFMXApplicationEventService;
begin
  if TPlatformServices.Current.SupportsPlatformService(IFMXApplicationEventService, IInterface(aFMXApplicationEventService)) then
    aFMXApplicationEventService.SetApplicationEventHandler(HandleAppEvent)
  else
    Log(\'Application Event Service is not supported.\');
end;

function TForm11.HandleAppEvent(AAppEvent: TApplicationEvent; AContext: TObject): Boolean;
begin
  case AAppEvent of
    aeFinishedLaunching: Log(\'Finished Launching\');
    aeBecameActive: Log(\'Became Active\');
    aeWillBecomeInactive: Log(\'Will Become Inactive\');
    aeEnteredBackground: Log(\'Entered Background\');
    aeWillBecomeForeground: Log(\'Will Become Foreground\');
    aeWillTerminate: Log(\'Will Terminate\');
    aeLowMemory: Log(\'Low Memory\');
    aeTimeChange: Log(\'Time Change\');
    aeOpenURL: Log(\'Open URL\');
  end;
  Result := True;
end;

procedure TForm11.Log(s: string);
begin
  Memo1.Lines.Add(TimeToStr(Now) + \': \' + s);
end;

end.

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.

 

Unlike standard Delphi desktop applications, the lifecycle of a mobile app is different and more complex. Also, the lifecycle of an Android application is slightly different than that of an iOS application. On both Android and iOS mobile devices, an application runs either in the foreground or in the background. For example, when a phone call arrives or when the user opens another application on the device, your application will go to the background. As a programmer, you may need to respond to these life cycle events. For example, you may need to save your current application state when your application is sent to the background or repaint the screen when moving back to the foreground. Using Delphi XE5, it is possible to use the same source code and compile your mobile application for Android and iOS. Although there are differences in their architectures, FireMonkey contains the “FMX.Platform” unit, which contains an interface definition of a “IFMXApplicationEventService” that makes it possible register an event handler to receive application lifecycle events for both platforms. Delphi XE5 version。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
Python&R&Matlab:批量生成变量发布时间:2022-07-18
下一篇:
matlab的帮助文档切换成中文(求助贴)发布时间:2022-07-18
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap