2012-03-14 48 views
0

我在我的應用程序中使用地圖視圖。當我運行我的應用程序logcat顯示「NoClassDefFoundError」。但在清單文件中,我給予以下權限Android地圖視圖類中的NoClassDefFoundError

<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/> 
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/> 
<uses-permission android:name="android.permission.INTERNET"> 

並且在應用程序標記中,我還使用了庫。

<application android:icon="@drawable/startseite" android:label="@string/app_name"> 
<uses-library android:name="com.google.android.maps" android:required="true"/> 

</application>  

任何人都知道這裏有什麼問題?如何解決這個錯誤以及如何顯示mapview

+0

postcat的整個輸出........ – 2012-03-14 05:18:30

+0

你在設備或模擬器中運行?如果您在模擬器中運行,請嘗試在Google API中運行 – user936414 2012-03-14 05:40:16

+0

我同時嘗試了模擬器和設備,但我只使用了Google API仿真器。但我得到了同樣的錯誤。 – selva 2012-03-14 05:52:30

回答

1

你註冊了Map APi Key嗎?你可以得到一個例子here

+1

現在正在工作。我爲我的意圖設置了標誌,Intent intent = new Intent(launchActivity.getParent(),DealerDetailsDisplay.class).setFlags(Intent.FLAG_ACTIVITY_NEW_TASK); – selva 2012-03-14 08:25:45