在过去的几天里,我一直无法使用简单的MapView工作,没有任何覆盖,只有地图。我查了很多解决方案,但没有一个能为我工作。
我有一个调试密钥库的apikey。我在清单文件中的适当位置拥有所有适当的权限,但我仍然得到相同的错误和相同的灰色网格。我的代码中是否有我遗漏的东西?我不知道出了什么问题,请帮忙!
这是mapactivity的布局xml:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<com.google.android.maps.MapView
android:id="@+id/mapview"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:enabled="true"
android:clickable="true"
android:apiKey="xxxx" />
</LinearLayout>
这是地图活动代码:
public class MapActivity extends com.google.android.maps.MapActivity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.map_view);
}
@Override
protected boolean isRouteDisplayed() {
return false;
}
}
这是我的清单文件:
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="xxxx"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk android:minSdkVersion="15" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name" android:debuggable="true">
<uses-library android:name="com.google.android.maps" />
.
.
.
.
<activity android:name="MapActivity"></activity>
</application>
</manifest>
答案 0 :(得分:0)
通过使用SHA1证书指纹,我有同样的问题。所以我已经去了MD5证书指纹。转到此网站https://developers.google.com/maps/documentation/android/v1/maps-api-signup并为您提供MD5指纹并获取密钥。 得到MD5指纹
然后键入keytool -exportcert -alias androiddebugkey -keystore “C:\ Users \ user-name.android \ debug.keystore”-list -v
在我的情况下,我键入了keytool -exportcert -alias androiddebugkey -keystore“C:\ Users \ User.android \ debug.keystore”-list -v