如何从ProfilePictureView转换为Bitmap?有可能吗?
答案 0 :(得分:8)
我知道了!
ImageView fbImage = ( ( ImageView)profilePictureFB.getChildAt( 0));
Bitmap bitmap = ( ( BitmapDrawable) fbImage.getDrawable()).getBitmap();
答案 1 :(得分:1)
您也可以启用ProfilePictureView的DrawingCache,然后调用getDrawingCache ......就像这样
ProfilePictureView mImage = (ProfilePictureView) findViewById(R.id.profilepic);
mImage.setDrawingCacheEnabled(true);
mImage.setProfileId(user.getId());
然后加载个人资料图片时......
Bitmap bitmap = mImage.getDrawingCache();