in android, I have a webview that opens perfectly, and I installed it as follows:
webView= (WebView) findViewById(R.id.webview); webView.setWebChromeClient(new WebChromeClient()); webView.setWebViewClient(new myWebViewClient()); webView.getSettings().setJavaScriptEnabled(true); webView.loadUrl(url);
but now during the web browsing session a list popup appears and I would like to change the background color of just this View list. its white right now and I want it to be gray? is there any way to provide this?
The list item is located on the web server. im just displaying webview. I just pass url to it. I do not have an adapter, since I do not have a list. him on the web page
its my companyβs web server so I can switch to javascript if that helps. what I noticed on some devices, the color is different. sometimes gray sometimes white. not sure what is going on. the other thing i noticed from the photo, as you can see, listview goes beyond the webview window. This may hint to me that this is a native dialog that can be used by web browsing. so will there be a theme element that I can install in android?

source share