ProfilePictureView to Bitmap (Facebook SDK for Android v3 )

android, facebook-android-sdk

Solution

I've got it!!

ImageView fbImage = ( ( ImageView)profilePictureFB.getChildAt( 0));
Bitmap    bitmap  = ( ( BitmapDrawable) fbImage.getDrawable()).getBitmap();

Problem

How can I convert from ProfilePictureView to Bitmap? It's possible?

Original source