在进行网络请求时如何使用界面进行改造,首先我们定义界面并传递它以创建改造方法这些东西如何协同工作
BooksAPI api = adapter.create(BooksAPI.class);
//Defining the method
api.getBooks(new Callback<List<Book>>() {
@Override
public void success(List<Book> list, Response response) {
//Storing the data in our list
books = list;
//Calling a method to show the list
showList();
}