Jump to content

Borni

Members
  • Content Count

    3
  • Joined

  • Last visited

Community Reputation

0 Neutral
  1. Borni

    Delphi 12.2 TMEMO - indexoutofbounds

    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;
  2. Borni

    Delphi 12.2 TMEMO - indexoutofbounds

    Nokia 5.4 with Android 12 - > ok Google Pixel 8 Android 14 -> ok Samsung S23 Android 14 -> Exception Galaxy s10+ Android 12 -> Exception Galaxy s24+ Android 14 -> Exception Galaxy Tab A Android 7.1.1 -> Exception all samsung devices !
  3. HI Folks, with the return key in a tmemo it crahses with the message java.lang.indexoutofboundsexception under Android32/64. Someone must have noticed this before !!! BR Borni
×