AdResponse
  public
  
  final
  
  class
  AdResponse
  
    extends Object
  
  
  
  
  
      implements
      
        Parcelable
      
  
  
| java.lang.Object | |
| ↳ | android.media.tv.AdResponse | 
An advertisement response which can be sent to TV interactive App service to inform AD status.
Summary
| Constants | |
|---|---|
| int | RESPONSE_TYPE_BUFFERING
 | 
| int | RESPONSE_TYPE_ERROR
 | 
| int | RESPONSE_TYPE_FINISHED
 | 
| int | RESPONSE_TYPE_PLAYING
 | 
| int | RESPONSE_TYPE_STOPPED
 | 
| Inherited constants | 
|---|
| Fields | |
|---|---|
| 
    public
    static
    final
    Creator<AdResponse> | CREATOR
 | 
| Public constructors | |
|---|---|
| 
      AdResponse(int id, int responseType, long elapsedTime)
       | |
| Public methods | |
|---|---|
| 
        
        
        
        
        
        int | 
      describeContents()
      Describe the kinds of special objects contained in this Parcelable instance's marshaled representation. | 
| 
        
        
        
        
        
        long | 
      getElapsedTimeMillis()
      Gets the playback elapsed time in milliseconds. | 
| 
        
        
        
        
        
        int | 
      getId()
      Gets the ID of AD response. | 
| 
        
        
        
        
        
        int | 
      getResponseType()
      Gets the response type. | 
| 
        
        
        
        
        
        void | 
      writeToParcel(Parcel dest, int flags)
      Flatten this object in to a Parcel. | 
| Inherited methods | |
|---|---|
Constants
RESPONSE_TYPE_BUFFERING
public static final int RESPONSE_TYPE_BUFFERING
Constant Value: 5 (0x00000005)
RESPONSE_TYPE_ERROR
public static final int RESPONSE_TYPE_ERROR
Constant Value: 4 (0x00000004)
RESPONSE_TYPE_FINISHED
public static final int RESPONSE_TYPE_FINISHED
Constant Value: 2 (0x00000002)
RESPONSE_TYPE_PLAYING
public static final int RESPONSE_TYPE_PLAYING
Constant Value: 1 (0x00000001)
RESPONSE_TYPE_STOPPED
public static final int RESPONSE_TYPE_STOPPED
Constant Value: 3 (0x00000003)
Fields
Public constructors
AdResponse
public AdResponse (int id, 
                int responseType, 
                long elapsedTime)| Parameters | |
|---|---|
| id | int | 
| responseType | int: Value isRESPONSE_TYPE_PLAYING,RESPONSE_TYPE_FINISHED,RESPONSE_TYPE_STOPPED,RESPONSE_TYPE_ERROR, orRESPONSE_TYPE_BUFFERING | 
| elapsedTime | long | 
Public methods
describeContents
public int describeContents ()
Describe the kinds of special objects contained in this Parcelable
 instance's marshaled representation. For example, if the object will
 include a file descriptor in the output of writeToParcel(android.os.Parcel, int),
 the return value of this method must include the
 CONTENTS_FILE_DESCRIPTOR bit.
| Returns | |
|---|---|
| int | a bitmask indicating the set of special object types marshaled
 by this Parcelable object instance.
 Value is either 0orCONTENTS_FILE_DESCRIPTOR | 
getElapsedTimeMillis
public long getElapsedTimeMillis ()
Gets the playback elapsed time in milliseconds.
| Returns | |
|---|---|
| long | The playback elapsed time. -1 if no valid elapsed time. | 
getResponseType
public int getResponseType ()
Gets the response type.
| Returns | |
|---|---|
| int | Value is RESPONSE_TYPE_PLAYING,RESPONSE_TYPE_FINISHED,RESPONSE_TYPE_STOPPED,RESPONSE_TYPE_ERROR, orRESPONSE_TYPE_BUFFERING | 
writeToParcel
public void writeToParcel (Parcel dest, int flags)
Flatten this object in to a Parcel.
| Parameters | |
|---|---|
| dest | Parcel: This value cannot benull. | 
| flags | int: Additional flags about how the object should be written.
 May be 0 orParcelable.PARCELABLE_WRITE_RETURN_VALUE.
 Value is either0or a combination ofParcelable.PARCELABLE_WRITE_RETURN_VALUE, and android.os.Parcelable.PARCELABLE_ELIDE_DUPLICATES | 
