下列不属于RecyclerView提供的LayoutManager的是()
A. LinearLayoutManager
B. RelativeLayoutManager
C. GridLayoutManager
D. StaggeredGridLayoutManager
使用RecyclerView之前,需要自定义一个继承自RecyclerView.Adapter的适配器类, 并且要重写里面的方法。以下属于必须要重写的方法是( )
A. public RecyclerView.ViewHolder onCreateViewHolder(ViewGroup parent, int viewTyp)
B. public void onBindViewHolder(AlbumAdapter.ViewHolder holder, int position)
C. public int getItemCount()
D. public long getItem(int position)