How to make website content editable in android?

I am showing some information in a webview. I need to make the content editable as soon as the user clicks on the displayed information. A keyboard should also appear. I tried to do this by setting contentEditable = true for webview. It works in iOS, not sure how to do it in Android. Please suggest if this can be done or is there some other way to achieve information editing? TIA

+3


source to share


1 answer


<div contenteditable=\"true\"> testing < /div>

      



contentEditable = true works for android too.

+2


source







All Articles