好的家伙你好我正在开发一个使用谷歌地图的Android应用程序。我在互联网上接受了一个教程并成功完成了它,但模拟器说应用程序无法正常工作,因为谷歌播放库不在手机上。 1.我导入了google playstore库。 2.我有android 5.0的google api图片 以下是我的代码。 这是我的清单文件
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.taxiapp"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="14"
android:targetSdkVersion="21" />
<permission
android:name="com.taxiapp.permission.MAPS_RECEIVE"
android:protectionLevel="signature"
/>
<uses-permission android:name="com.taxiapp.permission.MAPS_RECEIVE"/>
<uses-permission android:name="com.taxiapp.permission.ACCESS_NETWORK_STATE"/>
<uses-permission android:name="com.taxiapp.permission.WRITE_EXTERNAL_STORAGE"/>
<uses-permission android:name="com.taxiapp.permission.READ_GSERVICES"/>
<uses-permission android:name="com.taxiapp.permission.ACCESS_COARSE_LOCATION"/>
<uses-permission android:name="com.taxiapp.permission.ACCESS_FINE_LOCATION"/>
<uses-feature
android:glEsVersion="0x00020000"
android:required="true"/>
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<meta-data
android:name="com.google.android.maps.v2.API_KEY"
android:value="AIzaSyAxvr6dSj58P5O4eypi8VkfdqBfoEWYtbE"
/>
<meta-data
android:name="com.google.android.gms.version"
android:value="@integer/google_play_services_version"/>
<activity
android:name=".HomeActivity"
android:label="@string/app_name" >
<!-- "@string/title_activity_home" > -->
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name=".QuickBook"
android:label="@string/title_activity_quick_book" >
</activity>
</application>
</manifest>
这是我的布局文件
<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"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context="com.taxiapp.QuickBook" >
<fragment
android:id="@+id/map"
android:name="com.google.android.gms.maps.MapFragment"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
/>
</RelativeLayout>
这是我的活动
package com.taxiapp;
import android.app.Activity;
import android.os.Bundle;
import android.view.Menu;
import android.view.MenuItem;
import com.google.android.gms.maps.GoogleMap;
public class QuickBook extends Activity {
GoogleMap map;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_quick_book);
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.quick_book, menu);
return true;
}
@Override
public boolean onOptionsItemSelected(MenuItem item) {
// Handle action bar item clicks here. The action bar will
// automatically handle clicks on the Home/Up button, so long
// as you specify a parent activity in AndroidManifest.xml.
int id = item.getItemId();
if (id == R.id.action_settings) {
return true;
}
return super.onOptionsItemSelected(item);
}
}
![在此处输入图片说明] [1]
这是我的项目浏览器,显示导入的谷歌播放库
![在此输入图片说明] [2]
我无法发布模拟器的快照,但活动打开,视图显示&#34;如果没有谷歌播放服务,此应用程序将无法运行,而手机中缺少这些服务&#34;
我正在使用谷歌地图api 2
答案 0 :(得分:1)
根据我记得的实施Google地图时,您无法使用它,因为它不支持Google Play服务。我最近发现了这个很酷的模拟器:http://www.genymotion.com/
也许看看它是否有帮助!
答案 1 :(得分:0)
要使用Google服务,您需要安装了Google服务的设备或虚拟机... 在您的ADT中创建的VM没有任何这些应用程序,您需要安装它们!
搜索gapps并祝你好运!