Android: how to configure <select> popup dialog in webview

I am using html5 to develop an android application. On a webpage, I use a select tag like this.

<!DOCTYPE html>
<html>
    <head>
        <meta name="viewport" content="width=device-width,initial-scale=1.0">
    </head>
<body>

<select>
  <option value="volvo">Volvo</option>
  <option value="saab">Saab</option>
  <option value="opel">Opel</option>
  <option value="audi">Audi</option>
</select>
  
</body>
</html>
Run codeHide result

Using Android to browse, click the drop-down list, a popup will appear, but I will try it with a serial mobile device, the popup is not the same as I can customize the style?

+4
source share

All Articles