Google地图未加载

时间:2014-09-22 12:32:01

标签: android google-maps

布局文件:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
 xmlns:android="http://schemas.android.com/apk/res/android"
  android:layout_width="match_parent"
  android:layout_height="match_parent">
 
       <fragment
           android:id="@+id/map"
           android:name="com.google.android.gms.maps.MapFragment"
           android:layout_width="match_parent"
           android:layout_height="match_parent"/>

 </RelativeLayout>

屏幕底部显示的是Google徽标,但没有地图。如何解决?

1 个答案:

答案 0 :(得分:0)

用此

替换您的片段
<fragment 
        android:id="@+id/map_fragment"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        class="com.google.android.gms.maps.SupportMapFragment"/>