Hi, Guys
I am using the B4XFloatTextField and have a strange problem when I select reveal passwords.
1. The B4XFloatTextField view is setup in Designer with password property checked.
2. This view (in the code) is attached to the keyboard along with a hide button by calling.
3. Running the code each time you select the B4XFloatTextField view the keyboard appears along with the Hide button (as expected).
4. However, when you click on the B4XFloatTextField reveal icon, the text is revealed but the Hide button vanishes.
Any suggestions - I think that the original link between the keyboard and the B4XFloatTextField view (with Hide) is lost - but I can't see how to detect this happening or fix it.
Kind regards
Dave
I am using the B4XFloatTextField and have a strange problem when I select reveal passwords.
1. The B4XFloatTextField view is setup in Designer with password property checked.
2. This view (in the code) is attached to the keyboard along with a hide button by calling.
B4X:
Sub AddViewToKeyboard (view As Object, pnlHide As Object)
Dim no As NativeObject = view
no.SetField("inputAccessoryView", pnlHide)
End Sub
3. Running the code each time you select the B4XFloatTextField view the keyboard appears along with the Hide button (as expected).
4. However, when you click on the B4XFloatTextField reveal icon, the text is revealed but the Hide button vanishes.
Any suggestions - I think that the original link between the keyboard and the B4XFloatTextField view (with Hide) is lost - but I can't see how to detect this happening or fix it.
Kind regards
Dave