TEvent或TLightweightEvent在Android服务中不起作用(Delphi-Berlin)

时间:2016-12-12 11:14:45

标签: android delphi delphi-10.1-berlin

我正在使用Delphi 10.1 Berlin Update 2。

TEventTLightweightEvent无法在Android服务中使用。

这些电话中的任何一个都不会返回:

  • Event1.SetEvent;
  • Event1.WaitFor(100); // should return after 100 ms

只有这一个返回:

  • Event1.ResetEvent;

我的Android服务OnCreate事件包含:

Event1 := TLightweightEvent.Create;  // or TEvent.Create;

在主应用程序中执行相同操作时,一切正常。

不幸的是,logcat也没有显示任何错误。

有没有人遇到同样的问题,或者知道解决方案?

0 个答案:

没有答案