这是与Retrofit库一起使用的API之一。
@GET("users/self/media/recent/")
Call<List<Media>> getRecentPostList(@Query("access_token") String access_token);
我正在使用GsonConverterFactory输出结果,这将返回List&lt;&gt;对象,但我可以同步列表吗?
我正在尝试使用 Collections.synchronizedList(new ArrayList&lt;&gt;()),并将Gson的结果列表作为参数传递给ArrayList的构造函数。
还有更好的方法吗?