Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to make webview content editable in android?

I am displaying some information in the webview. I need to make the content editable once the user clicks on the displayed info. The keyboard should appear as well. I tried to do this by setting contentEditable = true for the webview. It works in iOS, not sure how to do in android. Please suggest if this can be done or any other way to achieve editing the info? TIA

like image 520
Abhijeet J. Avatar asked Oct 22 '14 09:10

Abhijeet J.


1 Answers

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

contentEditable = true works for android as well.

like image 54
android Avatar answered Oct 29 '22 15:10

android