4

我正在尝试实现自定义 MapView。在我的 MapActivity(名为 mainmap)中,我有一个扩展 MapView 的内部类:

private class Lmapview extends MapView{

    public Lmapview(Context context, AttributeSet attrs) {
        super(context, attrs);
        gestures = new GestureDetector(mainmap.this, new GestureListener(this));
    }

    public boolean OnTouchEvent(MotionEvent event){
        return gestures.onTouchEvent(event);

    }
}

我将 main.xml 格式化为像这样找到内部类:

<?xml version="1.0" encoding="utf-8"?>
<view
    xmlns:android="http://schemas.android.com/apk/res/android"
    class="com.mondo.tbuddy.mainmap$Lmapview"
    android:id="@+id/mapview"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:clickable="true"
    android:apiKey=*****
/>

此外,在 Androidmanifest.xml 中,我有相应的<uses-library android:name="com.google.android.maps"/>条目。

当我尝试运行我的应用程序时,我在 logcat 中得到(除其他外):

错误/AndroidRuntime(14999):原因:android.view.InflateException:二进制 XML 文件第 2 行:膨胀类 com.mondo.tbuddy.mainmap$Lmapview 时出错

这是由我在 logcat 中找到的这个条目引起的:

错误/AndroidRuntime(14999): 由: java.lang.NoSuchMethodException: Lmapview(Context,AttributeSet) 引起

如果我理解正确,我的应用程序正在崩溃,因为 Android 说它没有为我的自定义 MapView(Lmapview 类)找到合适的构造函数。但是,正如您在上面看到的,它已定义并且与它正在寻找的签名相匹配。

谁能给我一些见解?

谢谢。

4

1 回答 1

5

在拥有超类对象之前,您不能实例化内部非静态类。因此,您必须将内部类设为静态,或将其移至单独的类。

于 2010-09-10T11:00:15.967 回答