zoukankan      html  css  js  c++  java
  • FMX App的Application的事件(各种手机的全局按键)

    直接上代码,还有条经验就是SetApplicationEventHandler可注册多个事件方法。

    unit Unit6;

    interface

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

    type
      TForm6 = class(TForm)
        Memo1: TMemo;
        procedure FormCreate(Sender: TObject);
      private
        function HandleAppEvent(AAppEvent: TApplicationEvent;
          AContext: TObject): Boolean;
        { Private declarations }
      public
        { Public declarations }
      end;

    var
      Form6: TForm6;

    implementation

    {$R *.fmx}


    procedure TForm6.FormCreate(Sender: TObject);
    var
      SvcEvents: IFMXApplicationEventService;
    begin
      if TPlatformServices.Current.SupportsPlatformService
        (IFMXApplicationEventService, IInterface(SvcEvents))
      then
        SvcEvents.SetApplicationEventHandler(HandleAppEvent);

    end;

    function TForm6.HandleAppEvent(AAppEvent: TApplicationEvent; AContext: TObject): Boolean;
    var
      astate: string;
    begin
      case AAppEvent of
        TApplicationEvent.FinishedLaunching:
          astate := 'FinishedLaunching';
        TApplicationEvent.BecameActive:
          astate := 'BecameActive';
        TApplicationEvent.WillBecomeInactive:
          astate := 'WillBecomeInactive';
        TApplicationEvent.EnteredBackground:
          astate := 'EnteredBackground';
        TApplicationEvent.WillBecomeForeground:
          astate := 'WillBecomeForeground';
        TApplicationEvent.WillTerminate:
          astate := 'WillTerminate';
        TApplicationEvent.LowMemory:
          astate := 'LowMemory';
        TApplicationEvent.TimeChange:
          astate := 'TimeChange';
        TApplicationEvent.OpenURL:
          astate := 'OpenURL';
      end;
      Self.Memo1.Lines.Add(astate);
      Result := true;
    end;

    end.

    http://blog.sina.com.cn/s/blog_44fa172f0102vwr2.html

  • 相关阅读:
    从零开始写STL-容器-双端队列
    JVM 总结
    从零开始写STL-容器-list
    从零开始写STL—容器—vector
    Web 后端编程的几个关键点(总结中...)
    Java Web 总结
    Spring实战读书笔记
    MSDN 同步部分 个人笔记
    洛谷 P3391【模板】文艺平衡树(Splay)
    洛谷 P1503 鬼子进村
  • 原文地址:https://www.cnblogs.com/findumars/p/6480119.html
Copyright © 2011-2022 走看看