PhoneGap & Android - How to use the new select list style

后端 未结 4 986
失恋的感觉
失恋的感觉 2021-01-14 13:37

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

4条回答
  •  旧时难觅i
    2021-01-14 14:07

    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).

提交回复
热议问题