0

我有这个自定义视图类作为内部类:

public class GraphFragment extends SherlockFragment {
[...]
    public class FlingableScrollView extends ScrollView {
        public FlingableScrollView(Context context, AttributeSet attrs,
                int defStyle) {
             super(context, attrs, defStyle);
        }

        public FlingableScrollView(Context context, AttributeSet attrs) {
             super(context, attrs);
        }

         public FlingableScrollView(Context context) {
             super(context);
         }

         @Override
         public boolean dispatchTouchEvent(MotionEvent ev) {
             super.dispatchTouchEvent(ev);
             return gestureListener.onTouch(this, ev);
         }
     }
}

在我的 XML 布局中:

        <view
        android:id="@+id/scrollView1"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        class="com.example.GraphFragment$FlingableScrollView" >

由于此错误,它不起作用:

04-04 20:04:41.001: E/AndroidRuntime(2011): 由: java.lang.NoSuchMethodException: [class android.content.Context, interface android.util.AttributeSet]

为什么?

4

1 回答 1

1

在这个问题中提出了类似的问题。看看有没有帮助。

实现扩展/自定义视图为构造函数抛出 NoSuchMethod

于 2013-04-04T20:38:57.963 回答