0
我製作了一個使用osmdroid jar file
的API,它固定在倫敦中心。該程序工作正常,你可以在地圖上瀏覽,但我仍然得到這個錯誤在main.xml
文件:osmdroid xml文件
"org.osmdroid.views.MapView failed to instantiate"
有什麼我應該怎麼辦?謝謝。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<org.osmdroid.views.MapView
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:id="@+id/mapview">
</org.osmdroid.views.MapView>
</LinearLayout>