Skip to content

How to display pictures in metadata on android #18

@JShaoLee

Description

@JShaoLee

How to display pictures in metadata on android,Android imageview does not support direct display of this data
below code right?

`

                  for (Metadata.Image image : track.getAlbum().getCoverList()) {
                        if (image.hasFileId() && image.hasSize()) {
                            byte[] imageBytes = image.toByteArray();
                            imageView.setImageBitmap(BitmapFactory.decodeByteArray(imageBytes, 0, imageBytes.length));
                            break;
                        }
                    }

`

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions