Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,9 @@ private void showPlayingFragment(String url) {
ft.add(android.R.id.content, videoPlayerFragment);
} else {
ft.show(videoPlayerFragment);
videoPlayerFragment.initData(url);
}

ft.commitAllowingStateLoss();
isPlayFragmentShow = true;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -100,11 +100,18 @@ public void initListener() {

@Override
public void initData() {
initData(url);
}

/**
* update the url for reshow the fragment
* @param url
*/
public void initData(String url){
VideoModel model = VideoModel.getInstance();
getVideoData(model,url);
}


@SuppressLint("CheckResult")
private void getVideoData(VideoModel model, String url) {
model.getVideoContent(url)
Expand Down