VideoAView.java 447 B

123456789101112131415161718192021222324252627282930313233
  1. package com.edufound.mobile.video;
  2. import android.net.Uri;
  3. import com.edufound.mobile.base.BaseView;
  4. import tv.danmaku.ijk.media.player.IMediaPlayer;
  5. public interface VideoAView extends BaseView {
  6. void setVideoUri(Uri uri);
  7. void start();
  8. void pause();
  9. void stop();
  10. void releaseVideo();
  11. void seek(int seek);
  12. boolean isPlaying();
  13. int getDuration();
  14. int getCurrent();
  15. void activityFinish();
  16. }