问题已解决 简短的解决方案摘要:确保您不是api v1的类。现在,当我工作时,模拟器对测试应用程序毫无用处。所以在实际设备上测试它。 最后,如果应用程序运行正常但没有显示地图,那么您的密钥有问题。 我在这里注意到的是catlog并没有说密钥错误,应用程序运行,但是地图没有显示。
我正在尝试2天制作一个简单的谷歌地图安卓应用程序,只显示活动上的地图但失败了。尝试每个教程到谷歌的第二页。什么都行不通。什么工作有点只是我在书中遵循的应用程序但它显示网格,没有MAP。通常人们会回答说关键是错的,但事实并非如此。我的关键是正确的,我在生成密钥方面做得很准确 我正在使用Google Maps Android API v2密钥。
这是我的activity_main.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<com.google.android.maps.MapView
android:id="@+id/mapView"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:apiKey="0AeGR0UwGH4pYmhcwaA9JF5mMEtrmwFe8RobTHA"
android:clickable="true"
android:enabled="true" />
</LinearLayout>
这是我的MainActivity.java
package com.example.lbs;
import android.os.Bundle;
import android.view.Menu;
import com.google.android.maps.MapActivity;
public class MainActivity extends MapActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.main, menu);
return true;
}
@Override
protected boolean isRouteDisplayed() {
// TODO Auto-generated method stub
return false;
}
}
这是我的AndroidManifest.xml
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.lbs"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="17" />
<uses-feature
android:glEsVersion="0x00020000"
android:required="true" />
<uses-permission android:name="android.permission.INTERNET" />
<permission
android:name="com.example.lbs.permission.MAPS_RECEIVE"
android:protectionLevel="signature" />
<uses-permission android:name="com.example.lbs.permission.MAPS_RECEIVE" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="com.google.android.providers.gsf.permission.READ_GSERVICES" />
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<uses-library android:name="com.google.android.maps" />
<activity
android:name="com.example.lbs.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>
</application>
<meta-data
android:name="com.google.android.maps.v2.API_KEY"
android:value="AIzaSyB1RpoULFVTRkXREZX0ZAwxcz4_75Y0HYc" />
</manifest>
在catlog上,当应用程序正在运行时,我得到了这个
IOException processing: 26
java.io.IOException: Server returned: 3
at android_maps_conflict_avoidance.com.google.googlenav.map.BaseTileRequest.readResponseData(BaseTileRequest.java:115)
更新1: 以上所述,正如我在某些地方阅读的那样,代码可能只适用于API密钥v1。所以我从https://blog-emildesign.rhcloud.com/?p=435开始完全遵循了一个教程。 我最终得到了这个
更新2: 现在我试着让它在实际的Android设备上运行。这是android 2.3。 所以做更多的工作。我最终参加了我的活动
我在CatLog上看到的是
所以地图还没有显示......请帮忙......
更新3: 问题出在API密钥中。我在logcat中看不到关于错误键的任何内容。应用程序运行但不显示地图。所以我重新生成了钥匙。 现在我们开始
答案 0 :(得分:1)
您的问题是您为Google Maps API V2生成了密钥,但您尝试使用Google Maps API V1对象MapView
:
<com.google.android.maps.MapView
android:id="@+id/mapView"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:apiKey="0AeGR0UwGH4pYmhcwaA9JF5mMEtrmwFe8RobTHA"
android:clickable="true"
android:enabled="true" />
相反,您应该使用MapFramgent
或SupportMapFragment
,这取决于您定位的API级别,您可以在我编写的本指南中获得有关如何在您的应用程序中集成Google Maps API V2的完整说明在这件事上:
<强>更新强>
第二个屏幕截图是你想在模拟器上获得的。 Google Play Services
未安装在模拟器上,而且是您看到所见内容的原因。尝试在安装了Google Play Services
的设备上测试此应用,它应该可以正常工作。
答案 1 :(得分:1)
检查这个! 我也有类似的问题。这对我有用! 1)如果生成了API密钥,请转到Google API控制台。 2)单击服务(显示在左侧的选项中)。 3)悬停并搜索Google Maps Android API v2。 4)启用它(最初它关闭,因此只出现灰色瓷砖)。
答案 2 :(得分:0)
在Google API控制台中,在Android应用的密钥下,确保添加了指纹 - 调试版和发布版指纹。