in FMX.Platform.UI.Android.pas
markieren
Code:
procedure TTextServiceAndroid.InternalUpdateSelection;
var
SelStart, SelEnd: Integer;
begin
if FTextView = nil then
Exit;
CalculateSelectionBounds(SelStart, SelEnd);
if SelEnd - SelStart > 0 then
FTextView.setSelection(SelStart, SelEnd)
else
FTextView.setSelection(JCharSequenceToStr(FTextView.getText).length); // the chagnes found by Enri
end;