Hi,
I've a problem with a textfield and the softKeyboard on android, in my app I've a simple search page with a two view with touch event that open the filter for the search.
My tipical usage on iPhone is:
- go to search
- tap search textfield -> keyboard is opened
- tap on the filter -> keyboard is closed and the filter is opened
- pick one from the list showed -> filter is closed and search is launched
until here iOS and Android work in the same correct way but if now I tap again on the textfield to change the search term on iOS the keyboard is opened, correctly, but not in Android the only thing is that for a split of a second I can see the back button change to the hide keyboard button, so my conclusion is that the keyboard is opened and immediately closed.
to hide the keyboard when i show the filter option I use $.textFieldId.blur();
anyone can help me?
Paolo