此内核由于某些原因出现错误,请帮助我理解。我想我错过了一些东西。 它说无效的方法声明;返回类型为必需。
那是AlertFragment
package com.suqareapps.Shopping_Cart;
import android.os.Bundle;
import android.support.v4.app.Fragment;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
public class AlertFragment extends Fragment {
@Override
public View onCreateView.View(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
// Creating view corresponding to the fragment
View v = inflater.inflate(R.layout.alert_fragment, container, false);
return v;
}
}
答案 0 :(得分:1)
仅覆盖public View onCreateView(LayoutInflater, ViewGroup, Bundle)
而不覆盖public View onCreateView.View
。因为public View onCreateView.View
类中没有像Fragment
这样的方法。