错误:在谷歌地图视图布局



我是安卓谷歌地图的新手,我遵循了一些教程开始,我遇到了错误。我无法在模拟器(三星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"/>

首先,您混合了Google Maps API的两个。您正在尝试使用Google Maps API V1对象和代码,因为它看起来像是API V2密钥。这永远不会奏效。因此,您首先需要做的是将代码更改为API V2代码。你可以按照我写的这个教程来做:

谷歌地图API V2

现在,即使您将代码更改为API V2代码,这在模拟器上仍然不起作用,因为如果不首先安装Google Play Services API,您就无法在模拟器上运行Google Maps API V2。

代码是Google地图v1。切换到谷歌地图v2。

文件在这里

https://developers.google.com/maps/documentation/android/start

教程是

http://www.vogella.com/articles/AndroidGoogleMaps/article.html

如果您将其更改为V2,这可以帮助您:

在安卓模拟器上运行谷歌地图v2

希望;)

相关内容

  • 没有找到相关文章

最新更新