You've already forked android_translation_layer
mirror of
https://gitlab.com/android_translation_layer/android_translation_layer.git
synced 2025-10-27 11:48:10 -07:00
21 lines
403 B
Java
21 lines
403 B
Java
package android.media;
|
|
|
|
public class MediaPlayer {
|
|
public interface OnCompletionListener {
|
|
}
|
|
public interface OnErrorListener {
|
|
}
|
|
public interface OnPreparedListener {
|
|
}
|
|
public interface OnBufferingUpdateListener {
|
|
}
|
|
public interface OnInfoListener {
|
|
}
|
|
public interface OnSeekCompleteListener {
|
|
}
|
|
public interface OnVideoSizeChangedListener {
|
|
}
|
|
public interface MediaPlayerControl {
|
|
}
|
|
}
|