由于几天我的应用程序不再显示地图。 为了确保我的代码是正确的,我决定测试MAPS教程 developer.android.com here中找到的应用程序。
教程中的地图也没有显示。 我只看到了Mapview的常见小网格。 当我点击它时,我会得到正常的响应,告诉我相应的地理编码。
知道为什么吗?
本教程的代码就是这个:
public class MapsActivity extends MapActivity
{
public void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.mapview);
MapView mapView = (MapView) findViewById(R.id.mapView);
mapView.setBuiltInZoomControls(true);
}
@Override
protected boolean isRouteDisplayed() {
return false;
}
}
?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<com.google.android.maps.MapView
android:id="@+id/mapView"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:enabled="true"
android:clickable="true"
android:apiKey="my key"
/>
答案 0 :(得分:2)
一般情况下,如果你的地图只显示一个网格而没有任何图块,你将使用调试api密钥混合一个release apk,反之亦然。