I have an application which contains a WebView. Inside it is a div with contenteditable=true.
Suppose I have some text already in the div. When I first click on the text, the cursor pops up and so does the soft keyboard. The problem is that if I click again, the soft keyboard disappears and then reappears.
Technically it isn't a problem since I can still write and do everything I need, but it is quite annoying to have the keyboard pop down and back up every time I want to click something.
I think the problem is coming from the WebView getting a focus event every time I click inside it, but I am unsure if this is the case.
Can someone enlighten me as to what is happening, or at least point me to some resources that can help me?