为什么我们在改造中使用界面

时间:2017-08-13 11:28:48

标签: java android oop retrofit

在进行网络请求时如何使用界面进行改造,首先我们定义界面并传递它以创建改造方法这些东西如何协同工作

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();
        } 

0 个答案:

没有答案