過去幾天,我一直無法獲得一個簡單的MapView工作,沒有覆蓋任何東西,只是地圖。我查了很多解決方案,但都沒有爲我工作。Android: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>
這是mapactivity代碼:
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>
這通常意味着簽名密鑰出錯。你有沒有用谷歌註冊你的證書密鑰?如果是,請確保您在設備上運行時使用釋放鍵並在模擬器上運行時使用調試鍵進行簽名。 – 2012-03-05 13:21:37
感謝您的快速回復。是的,是的。我使用Google註冊了我的密鑰,並使用了正確的密鑰。 – 2012-03-05 13:57:41
我剛剛生成了一個新的debug.keystore,但仍然出現同樣的錯誤:( – 2012-03-05 14:05:47