我想在我的Android应用程序上显示谷歌地图。显示我做一些这样的基本步骤:
的AndroidManifest.xml
<uses-permission android:name="android.permission.INTERNET" />
maps.xml
<view android:id="@+id/mv"
class="com.google.android.maps.MapView"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_weight="1"
android:clickable="true"
android:apiKey="0cNoErXkpZDlKvCYr_OFj5xZD39-***********"
/>
这可能是map class,import和onCreate方法
import com.google.android.maps.GeoPoint;
import com.google.android.maps.MapActivity;
import com.google.android.maps.MapController;
import com.google.android.maps.MapView;
import android.os.Bundle;
地图类上的方法onCreate()
public void onCreate(Bundle savedInstanceState){
super.onCreate(savedInstanceState);
requestWindowFeature(Window.FEATURE_NO_TITLE);
setContentView(R.layout.maps);
mapView = (MapView)findViewById(R.id.mv);
mapView.setSatellite(false);
mapView.setTraffic(false);
mapView.setBuiltInZoomControls(true);
int maxZoom = mapView.getMaxZoomLevel();
int initZoom = maxZoom-2;
mapControl = mapView.getController();
mapControl.setZoom(initZoom);
latE6 = (int) (lat*1e6);
lonE6 = (int) (lon*1e6);
gp = new GeoPoint(latE6, lonE6);
mapControl.animateTo(gp);
overlayButton = (Button)findViewById(R.id.doOverlay);
但为什么我的地图没有显示,我只看到没有地图的网格,当我尝试读取logcat时,我看到这个黄色的错误
Recycling dispatcher android_maps_conflict_avoidance.com.google.googlenav.datarequest.DataRequestDispatcher@40563470
请帮帮我。谢谢伙伴
答案 0 :(得分:1)
您确定您的API密钥是否正确?当API密钥不匹配时,它会显示网格而不是地图。
直接在模拟器/实际手机上从Eclipse运行应用程序需要不同的密钥,然后在首先构建.apk文件并在设备上运行时。
答案 1 :(得分:1)
- 如果您有代理上网,您将获得网格。 - 使用默认的调试密钥库来生成API密钥并尝试。