Class TextInformationFrame

  • All Implemented Interfaces:
    Parcelable, Metadata.Entry

    @Deprecated
    public final class TextInformationFrame
    extends Id3Frame
    Deprecated.
    com.google.android.exoplayer2 is deprecated. Please migrate to androidx.media3 (which contains the same ExoPlayer code). See the migration guide for more details, including a script to help with the migration.
    Text information ID3 frame.
    • Constructor Detail

      • TextInformationFrame

        public TextInformationFrame​(String id,
                                    @Nullable
                                    String description,
                                    List<String> values)
        Deprecated.
      • TextInformationFrame

        @Deprecated
        @InlineMe(replacement="this(id, description, ImmutableList.of(value))",
                  imports="com.google.common.collect.ImmutableList")
        public TextInformationFrame​(String id,
                                    @Nullable
                                    String description,
                                    String value)
        Deprecated.
        Use TextInformationFrame(String id, String description, String[] values instead
    • Method Detail

      • populateMediaMetadata

        public void populateMediaMetadata​(MediaMetadata.Builder builder)
        Deprecated.
        Uses the first element in values to set the relevant field in MediaMetadata (as determined by Id3Frame.id).
        Parameters:
        builder - The builder to be updated.
      • equals

        public boolean equals​(@Nullable
                              Object obj)
        Deprecated.
        Overrides:
        equals in class Object
      • hashCode

        public int hashCode()
        Deprecated.
        Overrides:
        hashCode in class Object
      • writeToParcel

        public void writeToParcel​(Parcel dest,
                                  int flags)
        Deprecated.