1.RecyclerView控件不在标准的库里面,需要先引入,引入比较简单,点击控件右边的下载按钮即可 2.先添加一个新闻实体类,用来为新闻列表提供数据,news.java: package com.example.chenrui.common; public class News { private String title; private int pic; public News(String title, int pic) { this.title = title; this.pic =