Virtual keyboard Android Firemonkey repeating words

-1

We have an Android app that is experiencing typing problems after sending a message. The problem happens when we try to insert a new message, after entering the first character, TMemo automatically inserts the entire contents of the previous message.

We are using Delphi 10.2 Tokyo, we already tried to change KeyboardType = Alphabet and FTextView.setIsPassword(True) , but we did not succeed, has anyone ever had this problem?

Note: it does not occur on all devices / keyboards.

    
asked by anonymous 13.08.2018 / 18:35

1 answer

0

If you have not yet solved the problem, you can try Jefferson Rudolf's suggestion:

Edit the unit FMX.Platform.Android.pas, changing the two occurrences from FTextView.setIsPassword (Password) to FTextView.setIsPassword (True).

In my case, I copied the unit to the folder of my project and made changes to that copy and added it to the project to ensure it was used without changing the original unit.

Resolved on all devices we tested (LG, Samsung, Asus and Alcatel).

Att,

David

    
10.09.2018 / 20:39