Hi there!
I'm facing a quite off problem...
On a very easy Android/Delphi App i've a tmemo, a tbutton and a tmediaplayer.
On the OnClick of the button i do this:
memo.Lines.Add('blablabla');
MediaPlayer1.FileName := System.IOUtils.TPath.Combine(TPath.GetDocumentsPath, 'a.mp3'); //playing an internal resource
MediaPlayer1.Play;
The problem is that "blablabla" is written on the memo only after Mediaplayer finishes playing the file...very very odd!
Any ideas?
I'm using Delphi 10.3 Community Edition