0

我真的需要你的帮助。OSMDROID 地图无法加载,我一直在逐行查看代码但没有得到它...... 此代码可在手机上运行(完美显示地图) ...... ..... 此代码适用于模拟器(不显示地图) *

我把屏幕截图 http://i1196.photobucket.com/albums/aa402/funkee_iads/osmdroidnotLoad.png

下面出现在图形布局中

无法实例化以下类: - org.osmdroid.views.MapView(打开类,显示错误日志)有关详细信息,请参阅错误日志(窗口 > 显示视图)。提示:当在 Eclipse 中显示时,在自定义视图中使用 View.isInEditMode() 以跳过代码

并且错误日志显示

org.osmdroid.views.MapView 无法实例化它真的很奇怪。

我使用这个库

-slf4j-android-1.5.8.jar / -osmdroid-android-3.0.8.jar / -osmbonuspack_v2.4.jar / -mapsforge-map-writer-0.3.0-jar-with-dependencies.jar

在这里我把代码::::

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
     android:background="#ffd7bd"
    android:orientation="vertical" >

    <TableRow
        android:id="@+id/tableRow1"
        android:layout_width="match_parent"
        android:layout_height="45dp" >

      <ImageView
        android:id="@+id/imageView0"
        android:layout_width="wrap_content"
        android:layout_height="match_parent"
        android:background="#ffd7bd"
       android:orientation="vertical"
       android:layout_marginLeft="-200dp "

        android:textStyle="bold"
   android:textColor="#000000" android:shadowColor="#8a6603"
   android:shadowDx="3" android:shadowDy="2" android:shadowRadius="1.8"
        android:src="@drawable/muestra2" />

    </TableRow>

  <org.osmdroid.views.MapView
        android:id="@+id/openmapview"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"/>

</LinearLayout>

感谢您的帮助

4

2 回答 2

0

我从没想过taht,但只有添加权限才能完美

使用权限 android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>

不知道为什么我需要这个权限,但它有效

于 2012-12-08T15:35:18.777 回答
0

这是osmdroid 需要的权限之一。我认为这是必要的,因为 osmdroid 需要访问某个地方来下载地图的图块。

于 2012-12-13T21:34:14.140 回答