Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

I have a very simple Android app that's just a WebView. Everything works fine (complex Javascript etc.). However, all of the HTML select controls seem to be disabled. They display with default values, but nothing happens when I click on them, and they don't get the orange highlight when I arrow through the controls.

Other inputs (text, radios, submit) work fine, so I don't think it's a focus issue.

Configuration:

  • Eclipse IDE
  • SDK Version 8 (2.2)
  • Testing in the Emulator
like image 235
byron Avatar asked Jan 15 '11 04:01

byron


1 Answers

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

like image 50
Hallvar Helleseth Avatar answered Oct 17 '22 03:10

Hallvar Helleseth