我想在我的媒体播放器应用中显示专辑封面。我为 api7 (2.1) 开发它。我使用 getEmbedPicture() 方法,但它给出了错误,我找不到错误。
它有什么问题?
retriver.setDataSource(serviceBinder.path+serviceBinder.track);
try{
InputStream is=new ByteArrayInputStream(retriver.getEmbeddedPicture());
if(is==null)
cover.setImageResource(R.drawable.default_album);
else{
is=new ByteArrayInputStream(retriver.getEmbeddedPicture());
Bitmap bMap = BitmapFactory.decodeStream(is);
cover.setImageBitmap(bMap);
}
}
catch(Exception e){
Toast.makeText(getApplicationContext(), e.toString(), Toast.LENGTH_LONG).show();
}
如何使用 android api7 从 mp3 文件中获取嵌入图片?
谢谢。