我遵循了本教程:http://developer.android.com/resources/tutorials/views/hello-mapview.html 它运行正常,除非我点击地图中的我的图标,对话框不会出现。并且应用程序停止。有没有其他人遇到过类似的问题?
我不知道google api是什么;有人能解释一下吗?这是否意味着上面教程中的代码不能在Android手机上运行?
这是我的代码:
package com.example.hellogooglemaps;
import java.util.List;
import android.graphics.drawable.Drawable;
import android.os.Bundle;
import com.google.android.maps.GeoPoint;
import com.google.android.maps.MapActivity;
import com.google.android.maps.MapView;
import com.google.android.maps.Overlay;
import com.google.android.maps.OverlayItem;
public class Hellogooglemaps extends MapActivity {
/*Called to say that we are not displaying any route information*/
@Override
protected boolean isRouteDisplayed() {
return false;
}
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
MapView mapView = (MapView) findViewById(R.id.mapview);
mapView.setBuiltInZoomControls(true);
List<Overlay> mapOverlays = mapView.getOverlays();
Drawable drawable = this.getResources().getDrawable(R.drawable.icon);
HelloItemizedOverlay itemizedoverlay = new HelloItemizedOverlay(drawable);
GeoPoint point = new GeoPoint(19240000,-99120000);
OverlayItem overlayitem = new OverlayItem(point, "Hola, Mundo!", "I'm in Mexico City!");
itemizedoverlay.addOverlay(overlayitem);
mapOverlays.add(itemizedoverlay);
}
}
答案 0 :(得分:1)
大多数Android手机都包含谷歌地图谷歌图书馆。 Google Maps API基本上是一组类,可让您通过Android应用程序轻松使用Google地图。
当然......有一些Android手机没有谷歌地图库,可能是许可证问题。因此,这些设备将无法运行您的应用。
关于您的编程问题,如果您编辑问题并提供代码的相关摘要,将会有所帮助。