无效的方法声明;需要返回类型

时间:2018-11-03 22:26:50

标签: android

此内核由于某些原因出现错误,请帮助我理解。我想我错过了一些东西。 它说无效的方法声明;返回类型为必需。

那是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;
}

}

1 个答案:

答案 0 :(得分:1)

仅覆盖public View onCreateView(LayoutInflater, ViewGroup, Bundle)而不覆盖public View onCreateView.View。因为public View onCreateView.View类中没有像Fragment这样的方法。