Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android Google Maps Failed to find style 'mapViewStyle' in current theme

When adding a google map view (I extended a MapView, used the xml editor to add it to the Activity, and added my google maps api key to the layout xml file manually)

My permissions allow Internet in the manifest file

What i'm wondering, is in the xml editor i get the error "Failed to find style 'mapViewStyle' in current theme" but i seem to have everything set up correctly.

like image 676
sean christe Avatar asked Aug 07 '11 19:08

sean christe


2 Answers

I had the same problem when I try to build a simple app, following the Android MapView tutorial.

The app showed this exception in AVD for the file file main.xml:

Failed to find style 'mapViewStyle' in current theme

At last I found that there is a mistake in file AndroidManifest.xml:

The element <uses-library android:name="com.google.android.maps" /> should be a child of the <application> element, not immediately within <manifest>.

Hope this was any help to you.

like image 107
Icyhins Avatar answered Oct 23 '22 13:10

Icyhins


For what its worth...

  1. My experience is that I got this in the UI Designer, but it did not break the build. I assume it is an Eclipse / Android SDK bug.

  2. My app has been working perfectly on the store until I upgraded my SDK to version 20. It leads me to believe this is something to do with the SDK.

  3. Of the various answers to this question (and duplicates) I found, none of them helped:

    • not changing the target SDK

    • not clean & build

    • not declaring a style manually


Finally, these questions are all duplicates (and mostly useless as confirmed by Ewok):

  • Android Google Maps Failed to find style 'mapViewStyle' in current theme
  • Let's solve the "Failed to find style 'mapViewstyle' in current theme" error
  • Google Maps in Android: Failed to find style 'mapViewStyle' in current theme
  • 'Failed to find style mapViewStyle' error persists
  • Android maps:Failed to find style 'mapViewStyle' in current theme
  • Android - Failed to find style 'mapViewStyle' in current theme
  • Android "Failed to find style 'mapViewStyle' in current Theme" error
  • Failed to find style 'mapViewStyle' in current theme

I tried to point this out to the moderators but I was ignored...

like image 4
Richard Le Mesurier Avatar answered Oct 23 '22 12:10

Richard Le Mesurier