我轉到我的20 +項目是嘗試使用谷歌地圖Android版V2。改變鍵和東西后,現在,它的工作。我不知道是什麼使這項工作,但謝謝大家。我有一個密鑰庫,關鍵是正確的。我想它奇蹟般地固定不知何故。恩,謝謝你們。
我正在搜索2天,但無法解決此問題。我做了所有事情,但是,這個應用程序無法工作。
我希望我的應用程序能夠在Android 2.2及更高版本上工作。就像它說「如果你在8級創建你的應用程序,它將支持95%的市場」。
這裏是我的截圖和源代碼:
我粘貼的源代碼是最容易得到的。我從網上拿走了這個。
下面是命令的輸出
keytool -list -keystore <path>
***************** WARNING WARNING WARNING ***************** * The integrity of the information stored in your keystore * * has NOT been verified! In order to verify its integrity, * * you must provide your keystore password. * ***************** WARNING WARNING WARNING *****************
倉庫類型:JKS密鑰庫提供:SUN
Your keystore contains 1 entry
androiddebugkey, 15.Mar.2013, PrivateKeyEntry,
Certificate fingerprint (SHA1): xxx
的main.xml文件:
<?xml version="1.0" encoding="utf-8"?>
<com.google.android.maps.MapView
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/mapView"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:clickable="true"
android:apiKey="AIzaSyDim-x5Gxxx"
/>
清單文件:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.androidhive.googlemaps"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk android:minSdkVersion="8" />
<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name" >
<!-- Add Google Map Library -->
<uses-library android:name="com.google.android.maps" />
<activity
android:name=".AndroidGoogleMapsActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
<!-- Allow to connect with internet -->
<uses-permission android:name="android.permission.INTERNET" />
</manifest>
的java文件(無需粘貼這一切,但我想這是最好的粘貼全部)
這裏有我的截圖:
http://i.imgur.com/gExHpUG.png
http://i.imgur.com/AMOXKhr.png
http://i.imgur.com/Aqon97Y.png
我想這個應用程序編譯到Android 4.2.2,但我想,想使它在2.2及以上工作。
這裏的屬性窗口的Android的標籤,以確保公正:
http://i.imgur.com/ht0CQwT.png
這裏是我的日誌
03-20 07:01:20.145: W/System.err(956): at java.lang.Thread.run(Thread.java:856)
03-20 07:01:20.665: W/System.err(956): IOException processing: 26
03-20 07:01:20.665: W/System.err(956): java.io.IOException: Server returned: 3
03-20 07:01:20.665: W/System.err(956): at android_maps_conflict_avoidance.com.google.googlenav.map.BaseTileRequest.readResponseData(BaseTileRequest.java:115)
03-20 07:01:20.675: W/System.err(956): at android_maps_conflict_avoidance.com.google.googlenav.map.MapService$MapTileRequest.readResponseData(MapService.java:1473)
03-20 07:01:20.675: W/System.err(956): at android_maps_conflict_avoidance.com.google.googlenav.datarequest.DataRequestDispatcher.processDataRequest(DataRequestDispatcher.java:1117)
03-20 07:01:20.675: W/System.err(956): at android_maps_conflict_avoidance.com.google.googlenav.datarequest.DataRequestDispatcher.serviceRequests(DataRequestDispatcher.java:994)
03-20 07:01:20.675: W/System.err(956): at android_maps_conflict_avoidance.com.google.googlenav.datarequest.DataRequestDispatcher$DispatcherServer.run(DataRequestDispatcher.java:1702)
這些線路重複所有的時間。
非常感謝。 您的帖子似乎包含格式不正確的代碼,代碼」誤 我刪除空行。對不起,我搞砸代碼。
谷歌地圖API V2停止服務。改用Google Maps V3 API。 – Raptor 2013-03-20 06:10:31
我正在嘗試使用適用於Android v2的谷歌地圖 – 2013-03-20 06:11:37
@citizen_of_noobville您是否得到了答案! – Janmejoy 2013-03-20 07:02:55