• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Apps Google Maps View

gorjan

Lurker
Hello everyone.

I have problem in my beginner tutorial application on which I want to display Google Maps.

I'm following the official Google Android Developer Tutorial:
Google Map View | Android Developers and I've done everything,

But the result I get is empty page (with squares) on which is displayed Google logo and control for zoom in/out. Everything seems like there should be map, but instead of showing the Map, the only thing displayed is page with squares...

Any suggestions what could be the problem ? (Or if anyone experienced similar application behavior)

Thanks in Advance
 
Do you have the Internet Access in the manifest in the manifest layer and NOT the application layer, e.g.

<manifest>
<application>
<stuff />
</application>
<uses-permission android:name="android.permission.INTERNET" />
</manifest>
 
Back
Top Bottom