enter code here
我创建了一个在Android模拟器中显示Google地图的项目
..但它仍然没有在我的模拟器中显示地图。我正在使用Google API密钥。
我已经使用我的SHAFingerprint创建了一个Google API密钥,并将其包含在我的Manifest中。
我还提到了Google-play-services-lib库以及jar文件。
当我在互联网上搜索时,有人说只有地图可以在手机中查看,在Android模拟器中它不会显示。
这是我的代码如果我犯了任何错误请告诉我..或者如果有任何新的方式在模拟器或andorid手机中显示地图,请告诉我如何做到这一点。
这是我在MainActivity中的代码
private GoogleMap mMap;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
//Add a marker
mMap = ((MapFragment) getFragmentManager().findFragmentById(R.id.map)).getMap();
}
}
这是我在XML文件中的代码
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity" >
<fragment
android:id="@+id/map"
android:name="com.google.android.gms.maps.MapFragment"
android:layout_width="match_parent"
android:layout_height="match_parent" />
这是我的Android Manifest Code ...
<uses-sdk
android:minSdkVersion="11"
android:targetSdkVersion="17" />
<permission
android:name="com.example.mapviewv2example.permission.MAPS_RECEIVE"
android:protectionLevel="signature" />
<uses-feature
android:glEsVersion="0x00020000"
android:required="true" />
<uses-permission android:name="com.example.mapviewv2example.permission.MAPS_RECEIVE" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="com.google.android.providers.gsf.permission.READ_GSERVICES" />
<!--
The following two permissions are not required to use
Google Maps Android API v2, but are recommended.
-->
<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.example.mapviewv2example.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="--------------------------------//some values"
android:value="-------------------------------//Google API KEY value" />
</application>
任何人都可以帮我解决问题......急切等待回应......
先谢谢..
答案 0 :(得分:0)
目前,参考Google Android地图Api v2,您无法在Android模拟器上运行google maps v2;您必须使用设备进行测试。