android.widget.VideoView Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of android Show documentation
Show all versions of android Show documentation
A library jar that provides APIs for Applications written for the Google Android Platform. The branch tag
that was used to checkout the source from the Git repos was android-2.1_r2.
package android.widget;
public class VideoView
extends android.view.SurfaceView
implements android.widget.MediaController.MediaPlayerControl
{
public VideoView(android.content.Context context) { super((android.content.Context)null,(android.util.AttributeSet)null,0); throw new RuntimeException("Stub!"); }
public VideoView(android.content.Context context, android.util.AttributeSet attrs) { super((android.content.Context)null,(android.util.AttributeSet)null,0); throw new RuntimeException("Stub!"); }
public VideoView(android.content.Context context, android.util.AttributeSet attrs, int defStyle) { super((android.content.Context)null,(android.util.AttributeSet)null,0); throw new RuntimeException("Stub!"); }
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) { throw new RuntimeException("Stub!"); }
public int resolveAdjustedSize(int desiredSize, int measureSpec) { throw new RuntimeException("Stub!"); }
public void setVideoPath(java.lang.String path) { throw new RuntimeException("Stub!"); }
public void setVideoURI(android.net.Uri uri) { throw new RuntimeException("Stub!"); }
public void stopPlayback() { throw new RuntimeException("Stub!"); }
public void setMediaController(android.widget.MediaController controller) { throw new RuntimeException("Stub!"); }
public void setOnPreparedListener(android.media.MediaPlayer.OnPreparedListener l) { throw new RuntimeException("Stub!"); }
public void setOnCompletionListener(android.media.MediaPlayer.OnCompletionListener l) { throw new RuntimeException("Stub!"); }
public void setOnErrorListener(android.media.MediaPlayer.OnErrorListener l) { throw new RuntimeException("Stub!"); }
public boolean onTouchEvent(android.view.MotionEvent ev) { throw new RuntimeException("Stub!"); }
public boolean onTrackballEvent(android.view.MotionEvent ev) { throw new RuntimeException("Stub!"); }
public boolean onKeyDown(int keyCode, android.view.KeyEvent event) { throw new RuntimeException("Stub!"); }
public void start() { throw new RuntimeException("Stub!"); }
public void pause() { throw new RuntimeException("Stub!"); }
public void suspend() { throw new RuntimeException("Stub!"); }
public void resume() { throw new RuntimeException("Stub!"); }
public int getDuration() { throw new RuntimeException("Stub!"); }
public int getCurrentPosition() { throw new RuntimeException("Stub!"); }
public void seekTo(int msec) { throw new RuntimeException("Stub!"); }
public boolean isPlaying() { throw new RuntimeException("Stub!"); }
public int getBufferPercentage() { throw new RuntimeException("Stub!"); }
public boolean canPause() { throw new RuntimeException("Stub!"); }
public boolean canSeekBackward() { throw new RuntimeException("Stub!"); }
public boolean canSeekForward() { throw new RuntimeException("Stub!"); }
}