0

我已经完成了 Google play 所需的所有设置。但是我在 Eclipse 中的模拟器给了我错误“不幸的是你的 com.vogella .. ..stopped”请给我建议解决方案,以便我可以检查我的谷歌地图示例代码是否正常工作。

我的 ShowMapActivity.java 文件

package com.vogella.android.locationapi.maps;

import android.app.Activity;
import android.os.Bundle;
import android.view.Menu;

import com.google.android.gms.maps.CameraUpdateFactory;
import com.google.android.gms.maps.GoogleMap;
import com.google.android.gms.maps.MapFragment;
import com.google.android.gms.maps.model.BitmapDescriptorFactory;
import com.google.android.gms.maps.model.LatLng;
import com.google.android.gms.maps.model.Marker;
import com.google.android.gms.maps.model.MarkerOptions;

@SuppressWarnings("unused")
public class ShowMapActivity extends Activity {
static final LatLng HAMBURG = new LatLng(53.558, 9.927);
static final LatLng KIEL = new LatLng(53.551, 9.993);
private GoogleMap map;

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_show_map);
map = ((MapFragment) getFragmentManager().findFragmentById(R.id.map))
    .getMap();
// Move the camera instantly to hamburg with a zoom of 15.
map.moveCamera(CameraUpdateFactory.newLatLngZoom(HAMBURG, 15));

// Zoom in, animating the camera.
map.animateCamera(CameraUpdateFactory.zoomTo(10), 2000, null);
}

@Override
public boolean onCreateOptionsMenu(Menu menu) {
getMenuInflater().inflate(R.menu.show_map, menu);
return true;
}

} 

我的 activity_show_map xml 文件

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity" >

<fragment
    android:id="@+id/map"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    class="com.google.android.gms.maps.MapFragment" />

</RelativeLayout> 


AnrdoidManifest.xml file

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.vogella.android.locationapi.maps"
android:versionCode="1"
android:versionName="1.0" >

<uses-sdk
    android:minSdkVersion="17"
    android:targetSdkVersion="17" />

<permission
    android:name="com.vogella.android.locationapi.maps.permission.MAPS_RECEIVE"
    android:protectionLevel="signature" />

<uses-feature
    android:glEsVersion="0x00020000"
    android:required="true" />

<uses-permission          android:name="com.vogella.android.locationapi.maps.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" >
<activity
android:name="com.vogella.android.locationapi.maps.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>

    <meta-data
        android:name="com.google.android.maps.v2.API_KEY"
        android:value="AIzaSyBIVouPmUMc0-EDPtQwqgzVcwlEt9NlaIo" />
</application>

4

4 回答 4

0

根据此链接:http://developer.android.com/google/play-services/setup.html。您的模拟器必须运行 Google API 4.2.2 或更高版本。

于 2014-04-10T04:44:01.660 回答
0

我试图在模拟器上运行一个使用谷歌播放服务的应用程序,它可以工作

首先创建具有 api 级别 18 (Android 4.3) 的 Android Emulator

你必须下载两个APK:

1) Google play APK 名为 com.android.vending.apk (求最新版本)

2) 名为 com.google.android.gms.apk 的 Google play 服务(求最新版本)

然后在您刚刚创建的模拟器中安装这两个 apk:

打开您的控制台,然后转到您的 SDK 的平台工具文件

将这些命令写入安装 apk

adb install com.android.vending.apk

然后

adb install com.android.vending.apk

使用此命令重新启动您的 adb

亚行重启

启动您的应用程序希望它可以工作

于 2014-04-15T20:56:54.127 回答
0

Google Maps for Android v2 API 不能在开箱即用的模拟器中运行。有些人用一些技巧让它工作,但不幸的是我自己没有。

你可以通过这篇文章自己尝试一下,祝你好运!...或使用真实设备。

于 2013-03-13T10:57:31.950 回答
0

即使我在模拟器上运行地图也没有运气。但是在真实设备上它应该可以正常工作。

这里有一些步骤..希望它有所帮助

一些概要

安装谷歌服务包;gms和自动售货机

Be sure that emulator started Copy attached com.google.android.gms-19032013.apk and com.google.android.vending-19032013.apk files to <bundel root>\sdk\platform-tools
    Open command from and go to <bundel root>\sdk\platform-tools
    then run command adb install com.google.android.gms-19032013.apk


then run command adb install com.android.vending-19032013.apk
if it says already exits then run commands
    adb uninstall com.android.vending
    adb uninstall com.google.android.gms

猜猜这会有所帮助:)

于 2013-06-18T05:57:11.100 回答