无法在片段中覆盖onCreateView

时间:2013-10-27 17:25:43

标签: android android-fragments

你好我试图使用片段,并在覆盖onCreateView时遇到编译错误。

如果删除覆盖,则不会创建片段视图。

我在另一个类中有另一个片段,它通过覆盖onCreateView进行编译,所以我的问题是没有JDK版本

我认为它与导入有关,但我试图删除所有导入并再次导入它们。

我的错误代码:

he method onCreateView(LayoutInflater, ViewGroup, Bundle) of type addRoutine.FavrotieExerciseFragment must override or implement a supertype method

这是我的代码:

    public class FavrotieExerciseFragment extends Fragment {

    public FavrotieExerciseFragment()
    {}

     @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container,
            Bundle savedInstanceState) {

        View rootView = inflater.inflate(R.layout.choose_from_list, container, false);

        return rootView;
    }

}

感谢您的帮助

1 个答案:

答案 0 :(得分:2)

问题是导入LayoutInflater错误