0

我正在尝试限制 OSM 的地图视图,因为这 4 个点可以充当核心。

关于这个问题,我也尝试使用 BoundedMapView.java (从这个网站获得)来帮助我解决这个问题。

这是我的活动代码:

public class POfflineMapView extends Activity implements LocationListener, MapViewConstants{

    private BoundedMapView myOpenMapView;
    //... removed unreleated variables
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);

    mResourceProxy = new DefaultResourceProxyImpl(getApplicationContext());
    setContentView(R.layout.offline_map_activity);
    myOpenMapView = (BoundedMapView) findViewById(R.id.openmapview);
    myOpenMapView.getTileProvider().clearTileCache();

    //removed unlreleated codes

    BoundingBoxE6 bbox = new BoundingBoxE6(north,east,south,west);
    myOpenMapView.setScrollableAreaLimit(bbox);
    }
}   

这是我的xml:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >

    <entity.BoundedMapView
        android:id="@+id/openmapview"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"/>
</LinearLayout>

我的 LogCat 显示此错误:

12-28 17:24:11.830: E/AndroidRuntime(14459): Caused by: java.lang.NoSuchMethodException: <init> [class android.content.Context, interface android.util.AttributeSet]

我不确定为什么我仍然收到此错误;BoundedMapView 是从 MapView 类扩展而来的,为什么构造函数还是报错?

如果我似乎没有正确解释此错误,请赐教,谢谢!

4

1 回答 1

1

这是因为当您在 xml 代码中创建一个BoundedMapView时,它会调用此构造函数,而缺少该构造函数:

public BoundedMapView(final Context context, final AttributeSet attrs) {
    super(context, 256, new DefaultResourceProxyImpl(context), null, null, attrs);
}
于 2013-01-02T19:49:52.010 回答