我正在使用Delphi 10.1 Berlin Update 2。
TEvent
和TLightweightEvent
无法在Android服务中使用。
这些电话中的任何一个都不会返回:
Event1.SetEvent;
Event1.WaitFor(100); // should return after 100 ms
只有这一个返回:
Event1.ResetEvent;
我的Android服务OnCreate
事件包含:
Event1 := TLightweightEvent.Create; // or TEvent.Create;
在主应用程序中执行相同操作时,一切正常。
不幸的是,logcat也没有显示任何错误。
有没有人遇到同样的问题,或者知道解决方案?