我有这个自定义视图类作为内部类:
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]
为什么?