我是Android谷歌地图的新手,我按照一些教程开始,我收到错误。我无法在模拟器(三星galaxy 2)上看到谷歌地图, 我写了下面的所有代码,请帮我解决错误。
的Manifest.xml
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.examp.onemap"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="7"
android:targetSdkVersion="18" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/>
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name="com.examp.onemap.MainActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<uses-library android:name="com.google.android.maps" />
</application>
</manifest>
MainActivity.java
package com.examp.onemap;
import android.os.Bundle;
import com.google.android.maps.MapActivity;
import com.google.android.maps.MapView;
public class MainActivity extends MapActivity {
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
MapView mapView = (MapView) findViewById(R.id.mapView);
mapView.setBuiltInZoomControls(true);
}
@Override
protected boolean isRouteDisplayed() {
return false;
}
}
我从`https://code.google.com/apis/console/
生成了密钥main.xml中
<?xml version="1.0" encoding="utf-8"?>
<com.google.android.maps.MapView
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/mapView"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:clickable="true"
android:apiKey="AIzaSyDXwNWYXS9Lz9d-bJlodc1GELulHsalkT0"/>
答案 0 :(得分:0)
首先,您要混合使用Google Maps API。您正尝试使用Google Maps API V1对象和代码,因为它似乎是API V2密钥。这永远不会奏效。因此,首先需要做的是将代码更改为API V2代码。你可以按照我写的那篇教程来做到这一点:
现在即使您将代码更改为API V2代码,这仍然无法在模拟器上运行,因为如果不先安装Google Play Services API,就无法在模拟器上运行Google Maps API V2。
答案 1 :(得分:0)
Codings是Google map v1。切换到Google地图v2。
文件在这里
https://developers.google.com/maps/documentation/android/start
教程
http://www.vogella.com/articles/AndroidGoogleMaps/article.html
答案 2 :(得分:0)