views:

169

answers:

1
+1  Q: 

Google Map View

Hi I am trying to show map in the android emulator. but it cant display google map in the map view. and also not connect www.google.com from browser on android emulator. so is there any settings regarding to run internet on emulator. can anyone help me out from this problem.

+1  A: 

Try adding this within the manifest tag of your AndroidManifest.xml file.

<uses-permission android:name="android.permission.INTERNET"/>

Chiwai Chan