I\'ve a little problem with my Android Maps Application. So that when I added MapView to my layout xml file it shows me \"Failed to find style \'mapViewStyle\' in current th
This happened to me too.. go into res>values>styles.xml
remove the previous theme line and put this one
<style name="AppBaseTheme" parent="android:Theme.Light" />
During the project creation, Eclipse asks to define a theme for the application. You might have selected any Holo theme. This theme doesn't support MapView which is showing the error.
You were right, Rafael T, that's an Eclipse bug...I have solved this using Ant builder (through terminal), and that worked :) Thanks again..