Have a panel with a few EditText views and one AutoCompleteEditText. They all have the ime.HandleActionEvent:
The softkeyboard shows the Next button for all the EditText views but the Done button for the AutoCompleteEditText. I would like them all to show the Done button. Is this possible?
It works fine otherwise, so both the Done and the Next button trigger the action.
RBS
B4X:
ime.AddHandleActionEvent(edtID)
ime.AddHandleActionEvent(edtFirstname)
ime.AddHandleActionEvent(edtSurname)
ime.AddHandleActionEvent(edtStreet)
ime.AddHandleActionEvent(edtPostcode)
ime.AddHandleActionEvent(actGP)
The softkeyboard shows the Next button for all the EditText views but the Done button for the AutoCompleteEditText. I would like them all to show the Done button. Is this possible?
It works fine otherwise, so both the Done and the Next button trigger the action.
RBS