public static interface WebView.FindListener
Modifier and Type | Method and Description |
---|---|
void |
onFindResultReceived(int activeMatchOrdinal,
int numberOfMatches,
boolean isDoneCounting)
Notifies the listener about progress made by a find operation.
|
void onFindResultReceived(int activeMatchOrdinal, int numberOfMatches, boolean isDoneCounting)
activeMatchOrdinal
- the zero-based ordinal of the currently selected matchnumberOfMatches
- how many matches have been foundisDoneCounting
- whether the find operation has actually completed. The listener
may be notified multiple times while the
operation is underway, and the numberOfMatches
value should not be considered final unless
isDoneCounting is true.