Delphi/꿀팁
어플의 상태변화 이벤트 받아오기
uses .., FMX.Platform;type TForm1 = class(TForm) procedure FormCreate(Sender: TObject); private { Private declarations } public { Public declarations } function AppEventHandler(AppEvent: TApplicationEvent; AContext: TObject): Boolean; end; FormCreate에서 어플의 이벤트서비스에 이벤트핸들러를 추가합니다.procedure TForm1.FormCreate(Sender: TObject); var AppEventService: IFMXApplicationEventService; begin if TPlatformServi..