When I jump from a tab page to the next in a tabhost, the focus is set on the first edittext box as it should, but the keyboard shows 'Done' despite additional edittext boxes below the first one that need accessed. I tried different combination of code such as:
I also tried:
Nothing worked to make it display 'Next'. The device has ICS4.
B4X:
Sub eText_FocusChanged (HasFocus As Boolean)
If HasFocus=True Then eText.ForceDoneButton=False
End Sub
I also tried:
B4X:
Sub etext_EnterPressed
eText.ForceDoneButton=False
End Sub