Android's WebView is correctly displaying the option items, but when I try to select one of them, the dropdown popup closes, the default selection keeps showing up and the dropdown menu freezes which means another click doesn't display the selection popup again.
This misbehavoir occures, as far I could test it, only on emulators and the HTC One. I've test it on devices like: HTC Disire , HTC Disire HD, Samsung Galaxy GT-I5500 and Samsung S3 where everythings works just fine.
It seems like the HTC One doesn't support select / option element used in a WebView.
It doesn't make difference if I load the content via local loadData or loadUrl from a website.
content:
<body>
<select >
<option value='option1'>option1</option>
<option value='option2'>option2</option>
</select>
</body>
Anyone with the same experiences and solutions?