到目前为止,我只是支持Android API 11及更高版本,但是这个应用程序非常简单,所以我想我会尝试支持到8. Eclipse只有一个投诉,那是我的onCreateView方法。如何在不提高minSDK版本的情况下处理此问题?
@Override
public View onCreateView(View parent, String name, Context context,
AttributeSet attrs) {
// TODO Auto-generated method stub
return super.onCreateView(parent, name, context, attrs); //complains here
}