Phonegap Build Android Creates Floating Bubble With 3 Dots
I created an Android app with Phonegap Build and it created a floating bubble with 3 dots in it. When I test my app on my computer it does not create these three dots, only when I
Solution 1:
Here's the definitive answer, you need to tweak your config.xml:
If you set either minSdkVersion or targetSdkVersion to 11 or higher, the system will not add the legacy overflow button.
Otherwise, the system will add the legacy overflow button when running on Android 3.0 or higher.
The only exception is that if you set minSdkVersion to 10 or lower, set targetSdkVersion to 11, 12, or 13, and you do not use ActionBar, the system will add the legacy overflow button when running your app on a handset with Android 4.0 or higher.
From: http://android-developers.blogspot.com/2012/01/say-goodbye-to-menu-button.html
Post a Comment for "Phonegap Build Android Creates Floating Bubble With 3 Dots"