I have a webview in my activity. Now when I use WebView.findAll() method to search text in webview it is not highlighting the matching words.

It works fine in Android 1.6 but is not working in 2.2.

link|improve this question

38% accept rate
I have the same problem. Was any solution found? – Ilya Izhovkin Jan 18 '11 at 5:48
No I didnt found any solution. – Brijesh Masrani Jan 18 '11 at 6:14
feedback

1 Answer

up vote 7 down vote accepted

There is an issue in Android issue tracker about this: http://code.google.com/p/android/issues/detail?id=9018

I placed this code right after WebView.findAll(), and it made highlighting working:

try
{
    Method m = WebView.class.getMethod("setFindIsUp", Boolean.TYPE);
    m.invoke(webView, true);
}
catch (Throwable ignored){}
link|improve this answer
Thanks very much its WORKING !!!!!!! – Brijesh Masrani Jun 13 '11 at 9:31
1  
This sounds like a nasty way to do it. But it does work! Thanks. – Peerke Jul 12 '11 at 13:07
I am getting a problem here. My text is highlighted but the findAll() method returns 0. I am not able to understand why?? Any string i may take, it highlights them properly but the findAll() method always returns 0. Any help would be appreciated :) – Antrromet Feb 29 at 5:06
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.