Delphi-PRAXiS
Seite 2 von 2     12   

Delphi-PRAXiS (https://www.delphipraxis.net/forum.php)
-   Cross-Platform-Entwicklung (https://www.delphipraxis.net/91-cross-platform-entwicklung/)
-   -   TEDIT & TMEMO Backspace Probleme (https://www.delphipraxis.net/215842-tedit-tmemo-backspace-probleme.html)

Olli73 19. Sep 2024 09:12

AW: TEDIT & TMEMO Backspace Probleme
 
Zitat:

Zitat von Borni (Beitrag 1541173)
Scheint wirklich nur auf den Samsung Geräten zu passieren.

Deshalb die Nachfrage. Gefühlt hat man 98% der Probleme nur mit Samsung.

Probier Mal eine andere Tastatur.

Borni 19. Sep 2024 09:16

AW: TEDIT & TMEMO Backspace Probleme
 
ist bei Emba jetzt auch gemeldet.

https://embt.atlassian.net/servicede...tal/1/RSS-1840

Borni 19. Sep 2024 09:19

AW: TEDIT & TMEMO Backspace Probleme
 
in FMX.Platform.UI.Android.pas
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); // das ist die Änderung found by Enri
end;
eine mögliche Lösung die für uns funktioniert.


Alle Zeitangaben in WEZ +1. Es ist jetzt 14:19 Uhr.
Seite 2 von 2     12   

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