I made a Ctrl+F search box with next ocurrence button, when i click next it scroll to next word, but the word is out of screen , if i scroll a few pixels down , you are able to see it.
so after the method find next is called i would like to scroll a little more so the highlighted word is visible.
mFindNextButton = (ImageButton) findViewById(R.id.find_next);
mFindNextButton.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
mCurrentWebView.findNext(true);
//scroll a little more()
}
});