public static abstract class TvRecordingClient.RecordingCallback
extends Object
java.lang.Object | |
↳ | android.media.tv.TvRecordingClient.RecordingCallback |
回拨用于接收 TvInputService.RecordingSession
上的各种状态更新
Public constructors |
|
---|---|
TvRecordingClient.RecordingCallback() |
Public methods |
|
---|---|
void |
onConnectionFailed(String inputId) 当建立与相应电视输入的记录会话的连接时发生错误时调用此命令。 |
void |
onDisconnected(String inputId) 这在与当前记录会话的连接丢失时被调用。 |
void |
onError(int error) 这是在发生问题时调用的。 |
void |
onRecordingStopped(Uri recordedProgramUri) 当当前记录会话已停止记录并在 |
void |
onTuned(Uri channelUri) 当记录会话已经被调谐到给定频道并且准备开始记录时被调用。 |
Inherited methods |
|
---|---|
From class java.lang.Object
|
void onConnectionFailed (String inputId)
当建立与相应电视输入的记录会话的连接时发生错误时调用此命令。
Parameters | |
---|---|
inputId |
String : The ID of the TV input bound to the current TvRecordingClient. |
void onDisconnected (String inputId)
这在与当前记录会话的连接丢失时被调用。
Parameters | |
---|---|
inputId |
String : The ID of the TV input bound to the current TvRecordingClient. |
void onError (int error)
这是在发生问题时调用的。 它可以在创建当前记录会话之后随时调用,直到它被释放。
Parameters | |
---|---|
error |
int : The error code. Should be one of the followings.
|
void onRecordingStopped (Uri recordedProgramUri)
当当前记录会话已停止记录并在 TvContract.RecordedPrograms
表中创建描述新录制节目的新数据条目时,将 TvContract.RecordedPrograms
此 TvContract.RecordedPrograms
。
Parameters | |
---|---|
recordedProgramUri |
Uri : The URI for the newly recorded program. |
void onTuned (Uri channelUri)
当记录会话已经被调谐到给定频道并且准备开始记录时被调用。
Parameters | |
---|---|
channelUri |
Uri : The URI of a channel. |