use of com.cyl.musiclake.ui.music.online.presenter.DownloadPresenter in project MusicLake by caiyonglong.
the class DownloadedFragment method initViews.
@Override
public void initViews() {
mAdapter = new SongAdapter(musicList);
mRecyclerView.setLayoutManager(new LinearLayoutManager(getContext()));
mRecyclerView.setAdapter(mAdapter);
mAdapter.bindToRecyclerView(mRecyclerView);
mPresenter = new DownloadPresenter(getActivity());
mPresenter.attachView(this);
}
Aggregations