Most visited

Recently visited

Added in API level 3

MediaRecorder.OnErrorListener

public static interface MediaRecorder.OnErrorListener

android.media.MediaRecorder.OnErrorListener


在记录时发生错误时调用回调的接口定义。

Summary

Public methods

abstract void onError(MediaRecorder mr, int what, int extra)

记录时发生错误时调用。

Public methods

onError

Added in API level 3
void onError (MediaRecorder mr, 
                int what, 
                int extra)

记录时发生错误时调用。

Parameters
mr MediaRecorder: the MediaRecorder that encountered the error
what int: the type of error that has occurred:
extra int: an extra code, specific to the error type

Hooray!