I developed an mobile app for Android using PhoneGap. I also published it for browsers.
On my phone, when I view the app in Chrome, I get the following select menu s
I had a similar issue with my dialogs in my Phonegap app in Android. The default theme in a cordova android app is:
android:theme="@android:style/Theme.Black.NoTitleBar"
Take a look to your AndroidManifest.xml
, in your MAIN activity. If this is the case change it to
android:theme="@android:style/Theme.Holo.Light.NoActionBar"
Chrome seems to use this theme according your screenshot (or a similar).