ProfilePictureView到位图(Facebook SDK for Android v3)

时间:2013-01-26 13:22:24

标签: android facebook-android-sdk

如何从ProfilePictureView转换为Bitmap?有可能吗?

2 个答案:

答案 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();