Class VdoMediaMetadata
- 
                    
                    - All Implemented Interfaces:
- 
                            
                            android.os.Parcelable
 
 public class VdoMediaMetadata implements Parcelable VdoMediaMetadata is a class that encapsulates metadata for media content in a VDO Player. It includes details such as the title, description, and poster image of the media. This class implements the Parcelable interface, allowing instances of this class to be passed between Android components. 
- 
                
                    
                    - 
                                
                            
                                Field SummaryFields Modifier and Type Field Description public Stringtitlepublic Stringdescriptionpublic Uriposterpublic final static Parcelable.Creator<VdoMediaMetadata>CREATOR
 - 
                                
                            
                                Constructor SummaryConstructors Constructor Description VdoMediaMetadata()Default constructor for creating an empty VdoMediaMetadata object. 
 - 
                                
                            
                                Method SummaryModifier and Type Method Description StringgetTitle()Gets the title of the media. voidsetTitle(String title)Sets the title of the media. StringgetDescription()Gets the description of the media. voidsetDescription(String description)Sets the description of the media. UrigetPoster()Gets the URI of the poster image associated with the media. voidsetPoster(Uri poster)Sets the URI of the poster image associated with the media. voidwriteToParcel(Parcel dest, int flags)Writes the object's data to the provided Parcel. intdescribeContents()Describes the contents of the Parcelable object. booleanequals(@Nullable() Object obj)Compares this object with another object for equality. - 
                    
                    
                    - 
                                
                            
                                Method Detail- 
                                        setTitlevoid setTitle(String title) Sets the title of the media. - Parameters:
- title- The title to set.
 
 - 
                                        getDescriptionString getDescription() Gets the description of the media. - Returns:
- The description of the media. 
 
 - 
                                        setDescriptionvoid setDescription(String description) Sets the description of the media. - Parameters:
- description- The description to set.
 
 - 
                                        getPosterUri getPoster() Gets the URI of the poster image associated with the media. - Returns:
- The URI of the poster image. 
 
 - 
                                        setPostervoid setPoster(Uri poster) Sets the URI of the poster image associated with the media. - Parameters:
- poster- The URI of the poster image to set.
 
 - 
                                        writeToParcelvoid writeToParcel(Parcel dest, int flags) Writes the object's data to the provided Parcel. - Parameters:
- dest- The Parcel in which the object should be written.
- flags- Additional flags about how the object should be written.
 
 - 
                                        describeContentsint describeContents() Describes the contents of the Parcelable object. - Returns:
- An integer bitmask indicating the set of special object types marshaled by the Parcelable. 
 
 
- 
                                        
 
- 
                                
                            
                                
 
- 
                    
                    
                    
 
-