TextInformationFrame


@UnstableApi
class TextInformationFrame : Id3Frame


Text information ID3 frame.

Summary

Public constructors

@InlineMe(replacement = "this(id, description, ImmutableList.of(value))", imports = "com.google.common.collect.ImmutableList")
TextInformationFrame(id: String!, description: String?, value: String!)

This function is deprecated.

Use TextInformationFrame(String id, String description, String[] values instead

TextInformationFrame(
    id: String!,
    description: String?,
    values: (Mutable)List<String!>!
)

Public functions

Boolean
equals(obj: Any?)
Int
Unit

Uses the first element in values to set the relevant field in MediaMetadata (as determined by id).

String!
Unit
writeToParcel(dest: Parcel!, flags: Int)

Public properties

String?
String!

This property is deprecated.

Use the first element of values instead.

ImmutableList<String!>!

The text values of this frame.

Inherited functions

From androidx.media3.extractor.metadata.id3.Id3Frame
From androidx.media3.common.Metadata.Entry
ByteArray<Byte>?

Returns the bytes of the wrapped metadata in this Entry, or null if it doesn't contain wrapped metadata.

Format?

Returns the Format that can be used to decode the wrapped metadata in getWrappedMetadataBytes, or null if this Entry doesn't contain wrapped metadata.

From android.os.Parcelable
abstract Int

Inherited properties

From androidx.media3.extractor.metadata.id3.Id3Frame
String!

The frame ID.

Constants

Public constructors

TextInformationFrame

@InlineMe(replacement = "this(id, description, ImmutableList.of(value))", imports = "com.google.common.collect.ImmutableList")
TextInformationFrame(id: String!, description: String?, value: String!)

TextInformationFrame

TextInformationFrame(
    id: String!,
    description: String?,
    values: (Mutable)List<String!>!
)

Public functions

equals

fun equals(obj: Any?): Boolean

hashCode

fun hashCode(): Int

populateMediaMetadata

fun populateMediaMetadata(builder: MediaMetadata.Builder!): Unit

Uses the first element in values to set the relevant field in MediaMetadata (as determined by id).

toString

fun toString(): String!

writeToParcel

fun writeToParcel(dest: Parcel!, flags: Int): Unit

Public properties

description

val descriptionString?

value

val valueString!

values

val valuesImmutableList<String!>!

The text values of this frame. Will always have at least one element.