Advertisement
Guest User

Untitled

a guest
Jul 20th, 2017
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. @Override
  2. public void onPrepared(MediaPlayer mp) {
  3. try{
  4. mediaPlayer.setDisplay(surfaceHolder);
  5. mediaPlayer.start();
  6. videoControllerView.start();
  7. layoutProgressBar.setVisibility(View.INVISIBLE);
  8. RequestsRB.putStartWatchingVideo(this, mCourseId, mToken, mLessons.get(currentVideoNum).getId());
  9. }catch (Exception e){
  10. Log.e("WatchVideoActivity=onPrepared", "ERRROR" + "");
  11. if (mediaPlayer==null) Log.e("WatchVideoActivity=onPrepared", "DA1" + "");
  12. if (mp==null) Log.e("WatchVideoActivity=onPrepared", "DA2" + "");
  13. }
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement