![]() |
AW: TEDIT & TMEMO Backspace Probleme
Zitat:
Probier Mal eine andere Tastatur. |
AW: TEDIT & TMEMO Backspace Probleme
|
AW: TEDIT & TMEMO Backspace Probleme
in FMX.Platform.UI.Android.pas
Code:
eine mögliche Lösung die für uns funktioniert.
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); // das ist die Änderung found by Enri end; |
Alle Zeitangaben in WEZ +1. Es ist jetzt 14:19 Uhr. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024-2025 by Thomas Breitkreuz