Retrofit 调用包含错误 Required retrofit2.Call,发现无效

Retrofit call contains error Required retrofit2.Call, found void

你好,我最近开始 retrofit 在实现代码时我遇到了这个错误

Incompatible types. 
Required: retrofit2.Call <java.util.List<com.my.package.Youtube.YoutubePost>>
Found: void

我正在尝试使用 Youtube v3 API

获取 YouTube 频道播放列表

这是我的代码

YoutubeActivity

    Retrofit retrofit = new Retrofit.Builder()
            .addConverterFactory(ScalarsConverterFactory.create())
            .baseUrl(AppConstant.API_YT_BASE)
            .addConverterFactory(GsonConverterFactory.create())
            .build();

    YoutubeApiInterface youtubeApiInterface = retrofit.create(YoutubeApiInterface.class);

    Call<List<YoutubePost>> call = youtubeApiInterface.getPlayList().enqueue(new Callback<List<YoutubePost>>() {
        @Override
        public void onResponse(Call<List<YoutubePost>> call, Response<List<YoutubePost>> response) {
            if (response.isSuccessful()) {

            } else {

            }
        }

        @Override
        public void onFailure(Call<List<YoutubePost>> call, Throwable t) {
            t.printStackTrace();

        }
    });

YoutubePost

public class YoutubePost implements Parcelable {
    @SerializedName("items")
    private List<YoutubeItems> ytItems = new ArrayList<>();
    private String nextPageToken;

    public List<YoutubeItems> getYtItems() {
        return ytItems;
    }

    public String getNextPageToken() {
        return nextPageToken;
    }

    @Override
    public int describeContents() {
        return 0;
    }

    @Override
    public void writeToParcel(Parcel dest, int flags) {
        dest.writeList(ytItems);
        dest.writeString(nextPageToken);
    }

    protected YoutubePost(Parcel in) {
        ytItems = in.readParcelable(YoutubeItems.class.getClassLoader());
        nextPageToken = in.readString();
    }

    public static final Creator<YoutubePost> CREATOR = new Creator<YoutubePost>() {
        @Override
        public YoutubePost createFromParcel(Parcel source) {
            return new YoutubePost(source);
        }

        @Override
        public YoutubePost[] newArray(int size) {
            return new YoutubePost[size];
        }
    };
}

下面附上错误消息的屏幕截图

我建议你,稍微修改一下getPlayList方法,用一个Call来return,然后break线。 没有你的 YoutubeApiInterface 这就是我得到的全部。

Call<List<YoutubePost>> call = youtubeApiInterface.getPlayList();
call.enqueue(new Callback<List<YoutubePost>>() {
        @Override
        public void onResponse(Call<List<YoutubePost>> call, Response<List<YoutubePost>> response) {
            if (response.isSuccessful()) {

            } else {

            }
        }.

        @Override
        public void onFailure(Call<List<YoutubePost>> call, Throwable t) {
            t.printStackTrace();

        }
    });

这样你就不会有类型问题,因为 call 本身会在排队期间被修改。