我正在尝试在我的设备上运行这个非常简单的应用程序(使用地图API V2),并且在尝试使用MapView时出于某种原因:
<com.google.android.maps.MapView
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:apiKey="(i did put the correct key)"
android:id="@+id/mvMap"/>
使用java文件:
public class MainMap extends MapActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.map_layout);
}
@Override
protected boolean isRouteDisplayed() {
return false;
}
瓷砖不会加载! 但是当我使用片段时: 分段 机器人:ID = “@ + ID /地图” android:name =“com.google.android.gms.maps.SupportMapFragment”android:layout_width =“fill_parent” android:layout_height =“fill_parent”/&gt;
with - 在java文件中扩展FragmentActivity它完全正常...
发生了什么事?
答案 0 :(得分:1)
请阅读非常好的教程,了解如何在Android中实施GoogleMaps: http://www.vogella.com/tutorials/AndroidGoogleMaps/article.html
如果您没有发布任何错误消息,可能会有数十个原因为什么地图未显示。
以下是最常见的错误: