devgianlu / librespot-android

A demo app that runs librespot-java on Android
33 stars 13 forks source link

How to display pictures in metadata on android #18

Closed JShaoLee closed 2 years ago

JShaoLee commented 2 years ago

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;
                        }
                    }

`

JShaoLee commented 2 years ago

Solved