Android Question IME.SetLengthFilter Reset

Creideiki

Active Member
Licensed User
Longtime User
I'm using SetLengthFilter to set the maximum input length für specific fields:
B4X:
Dim ime As IME
ime.Initialize("")

If nMaxLength > 0 Then ime.SetLengthFilter(editFeld, nMaxLength)
If nMaxLength is 0, I don't want to have a maximum length.
But after I used the sub for the first time with SetLengthFilter, the filter remains active, even if I don't use SetLengthFilter.
How can I reset this filter?

Thanks.
 
Top