我是Android新手,我正在尝试开发包含Google地图的Android应用。该应用程序在模拟器上运行良好,直到我决定将Google Play服务从版本7更新为9。
我现在遇到了之前遇到的相同错误(“Google Play服务已过期......”),加上“致命异常:主要”错误。这是我在logcat中得到的:
http://imageshack.us/a/img11/8117/y1mq.png
如果我正确阅读了logcat,那么错误就在MapTabActivity中,但我不知道该错误是由Google Play服务过时还是其他原因造成的......
在更新Google Play服务之前,该应用正在使用
进行模拟器工作我还必须安装其他帖子中推荐的com.android.vending.apk和com.google.android.gms.apk。
我还添加了清单所需的权限,并申请了一个也包含在清单中的API密钥。
任何人都可以帮助我吗?这是MapTabActivity及其相应的XML。
MapTabActivity.java
package com.dissertation.closethedoordiss;
import com.google.android.gms.maps.CameraUpdateFactory;
import com.google.android.gms.maps.GoogleMap;
import com.google.android.gms.maps.SupportMapFragment;
import com.google.android.gms.maps.model.LatLng;
import android.content.Intent;
import android.os.Bundle;
import android.support.v4.app.FragmentActivity;
import android.view.View;
public class MapTabActivity extends FragmentActivity {
private GoogleMap mMap;
private static final LatLng BRISTOL = new LatLng(51.455083,-2.586903);
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_maptab);
mMap = ((SupportMapFragment) getSupportFragmentManager().findFragmentById(R.id.mapView)).getMap();
mMap.setMapType(GoogleMap.MAP_TYPE_NORMAL);
mMap.moveCamera(CameraUpdateFactory.newLatLngZoom(BRISTOL, 13));
}
public void onClick_addretailer (View view) {
startActivity(new Intent("com.closethedoordiss.AddRetailerActivity"));
}
}
activity_maptab.xml
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:map="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent">
<fragment
android:name="com.google.android.gms.maps.SupportMapFragment"
android:id="@+id/mapView"
android:layout_width="match_parent"
android:layout_height="match_parent" />
<ImageButton
android:id="@+id/imageButton1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:src="@android:drawable/ic_menu_add"
android:onClick="onClick_addretailer"
android:contentDescription="@string/add_button" />
</RelativeLayout>
提前感谢您提供的任何帮助。
答案 0 :(得分:1)
我发现运行Google Maps Android API v2的唯一方法是在物理设备上。
我在安装了Android 4.0.4的三星Galaxy S Duos上运行我的应用程序,地图显示正确。
尝试了多种解决方案,包括测试多种模拟器配置并安装不同的apks后,我相信克服Google Play服务的最简单方法已经过时了#34;在模拟器上使用Google maps API v2时,问题是在物理设备上开发/测试。
希望这有帮助。
答案 1 :(得分:0)
我多次遇到这个问题,我找到了几种解决方法。很可能您的应用程序引用的Play服务与您在设备上的内容不匹配,在本例中是模拟器。这可能会发生,因为模拟器上未安装Google Play(或Google Play服务)。查看this SO post了解详情。如果已安装,则可能需要更新它。如果内置更新不起作用,您可以通过从头开始安装来更新它。
如果您将Google Play服务用作图书馆计划,则可能需要更新您的Google Play服务库。这是我的所作所为:
如果您没有将Google Play服务用作图书馆项目,或者您已经更新了,那么请忽略我上面所说的一切:)
一旦您的设备/模拟器和Eclipse项目使用相同的Play服务库更新版本,那么您应该好好去!