use of com.cyl.musiclake.ui.music.online.presenter.BaiduListPresenter in project MusicLake by caiyonglong.
the class BaiduMusicListActivity method initData.
@Override
protected void initData() {
mPresenter = new BaiduListPresenter(this);
mPresenter.attachView(this);
mAdapter = new SongAdapter(musicList);
mAdapter.setEnableLoadMore(true);
LinearLayoutManager layoutManager = new LinearLayoutManager(this);
layoutManager.setOrientation(LinearLayoutManager.VERTICAL);
mRecyclerView.setLayoutManager(layoutManager);
mRecyclerView.setAdapter(mAdapter);
mAdapter.bindToRecyclerView(mRecyclerView);
showHeaderInfo();
mPresenter.loadOnlineMusicList(type, 10, mOffset);
}
Aggregations