Reputation: 1112
For Android 3.x I used :
webview.showFindDialog(string_to_find, true);
It's working well.
However, for Android 4.x it finds the number of occurences but doesn't highlight them...
Any workaround ?
Thanks !
Upvotes: 2
Views: 721
Reputation: 2408
Seems to be a known bug in ICS. It's been reported here: http://code.google.com/p/android/issues/detail?id=29987 I've seen a possible workaround elsewhere (calling a private method setFindIsUp) but it hasn't worked for me.. =/
Upvotes: 1