public class DrmInfoEvent
extends DrmEvent
java.lang.Object | ||
↳ | android.drm.DrmEvent | |
↳ | android.drm.DrmInfoEvent |
传递给 onInfo()
回调的实体类。
Constants |
|
---|---|
int |
TYPE_ACCOUNT_ALREADY_REGISTERED 已经为给定帐户进行了注册。 |
int |
TYPE_ALREADY_REGISTERED_BY_ANOTHER_ACCOUNT 注册已经由另一个帐户ID完成。 |
int |
TYPE_REMOVE_RIGHTS 这些权利需要彻底删除。 |
int |
TYPE_RIGHTS_INSTALLED 权利已成功下载并安装。 |
int |
TYPE_RIGHTS_REMOVED 权利已被删除。 |
int |
TYPE_WAIT_FOR_RIGHTS 权利对象正在传递给设备。 |
Inherited constants |
---|
From class android.drm.DrmEvent
|
Public constructors |
|
---|---|
DrmInfoEvent(int uniqueId, int type, String message) 用指定的参数创建一个 |
|
DrmInfoEvent(int uniqueId, int type, String message, HashMap<String, Object> attributes) 用指定的参数创建一个 |
Inherited methods |
|
---|---|
From class android.drm.DrmEvent
|
|
From class java.lang.Object
|
int TYPE_ACCOUNT_ALREADY_REGISTERED
已经为给定帐户进行了注册。
常量值:5(0x00000005)
int TYPE_ALREADY_REGISTERED_BY_ANOTHER_ACCOUNT
注册已经由另一个帐户ID完成。
常数值:1(0x00000001)
int TYPE_WAIT_FOR_RIGHTS
权利对象正在传递给设备。 您必须等待再次致电acquireRights()
。
常量值:4(0x00000004)
DrmInfoEvent (int uniqueId, int type, String message)
用指定的参数创建一个 DrmInfoEvent
对象。
Parameters | |
---|---|
uniqueId |
int : Unique session identifier. |
type |
int : Type of the event. Must be any of the event types defined above, or the constants defined in DrmEvent . |
message |
String : Message description. It can be null. |
DrmInfoEvent (int uniqueId, int type, String message, HashMap<String, Object> attributes)
用指定的参数创建一个 DrmInfoEvent
对象。
Parameters | |
---|---|
uniqueId |
int : Unique session identifier. |
type |
int : Type of the event. Must be any of the event types defined above, or the constants defined in DrmEvent |
message |
String : Message description. It can be null. |
attributes |
HashMap : Attributes for extensible information. Could be any information provided by the plug-in. |