HTML <select> control disabled in Android WebView (in emulator)

落花浮王杯 提交于 2019-12-04 09:11:45

I had the same problem. My problem was fixed by changing overflow:hidden to overflow:visible on a containing element.

I had the same problem.

In my case I had elements on the page that had the style position:fixed;

Although the bounding boxes of the select element and the fixed positioned elements did NOT overlap, I wasn't able to open the select dialog.

By removing a couple of fixed positioned elements I got it to work. Seems to be a bug in webview.

R T

Same Problem, fixed it by setting position:relative on the li's containing the select fields

2 years after the fact, but in case someone pulls this up again:

If it's android 2.3, put   in every empty child element of a fixed position parent. I found that this fixed the problem for me.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!