There was a small problem with ShowFindDialog for WebView . Nowhere can I find any information about changing the background color or the text color in it:

 webView.showFindDialog(null, true); InputMethodManager imm = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE); imm.toggleSoftInput(InputMethodManager.SHOW_FORCED, 0); 

Can anyone please suggest how to customize this element to your needs? Thanks a lot in advance!

enter image description here

    0