Issue
I'm using Google Maps Android API v2 with MapView . When I run MapView . It displays blank . What is happening ???
Solution
Don't use the fragment element with the MapView. The correct way would be a layout file like this:
<com.google.android.gms.maps.MapView
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/map"
android:layout_width="match_parent"
android:layout_height="match_parent"/>
Answered By - Matt Handy
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.