如何将我的应用程序保留在前台?

How can I keep my application in the foreground?

问题:如何将我的应用程序保持在前台and/or防止它永远进入后台?

我创建了一个应用程序并设法让它在设备启动时自动启动。该应用程序的目的是显示一些数据,除非我也想要,否则永远不会进入菜单或终止。

A​​ctivityManager 时不时地认为我的应用程序不够重要,并希望将其发送到后台,甚至更糟,完全终止它。有时会在 1、4 或 16 小时后发生。

到目前为止我已经找到了如何检查应用程序是否收到各种 ApplicationEvents 的方法:

function TForm1.HandleAppEvent(AAppEvent: TApplicationEvent; AContext: TObject): Boolean;
begin
  case AAppEvent of
    TApplicationEvent.FinishedLaunching: MemoPrint('Finished Launching');
    TApplicationEvent.BecameActive: MemoPrint('Became Active');
    TApplicationEvent.WillBecomeInactive: MemoPrint('Will Become Inactive');
    TApplicationEvent.EnteredBackground: MemoPrint('Entered Background');
    TApplicationEvent.WillBecomeForeground: MemoPrint('Will Become Foreground');
    TApplicationEvent.WillTerminate: MemoPrint('Will Terminate');
    TApplicationEvent.LowMemory: MemoPrint('Low Memory');
  end;
  Result := True;
end;

procedure TForm1.LinkAppEvent;
var
  aFMXApplicationEventService: IFMXApplicationEventService;
begin
  if TPlatformServices.Current.SupportsPlatformService(IFMXApplicationEventService,
    IInterface(aFMXApplicationEventService)) then
    aFMXApplicationEventService.SetApplicationEventHandler(HandleAppEvent)
  else
    MemoPrint('Application Event Service is not supported.');
end;

所以我想知道如何从这里开始。希望到目前为止我走在正确的轨道上。 :)

我认为您不能将其保留在前台。如果您想重复执行某些任务,您可以使用一个服务,该服务会在后台 运行ning 保持运行,即使该应用未在使用中也是如此。

您可以做的是 运行 后台服务,当有新数据可用时,您可以向用户显示通知,当用户单击通知时,会显示所需的数据。就像所有新闻和其他应用程序所做的那样。

另外,您可以有一个处理程序,它会在特定时间间隔对您的服务器执行 ping 操作以获取新数据。但即使在那种情况下,除非或除非用户对您的应用执行某些操作,否则您将无法将您的应用置于前台。