ProfilePictureView から Bitmap に変換するにはどうすればよいですか? それが可能だ?
質問する
3515 次
2 に答える
9
私はそれを持っている!!
ImageView fbImage = ( ( ImageView)profilePictureFB.getChildAt( 0));
Bitmap bitmap = ( ( BitmapDrawable) fbImage.getDrawable()).getBitmap();
于 2013-01-26T14:42:11.750 に答える
1
ProfilePictureView の DrawingCache を有効にしてから getDrawingCache を呼び出すこともできます...このように
ProfilePictureView mImage = (ProfilePictureView) findViewById(R.id.profilepic);
mImage.setDrawingCacheEnabled(true);
mImage.setProfileId(user.getId());
そして、プロフィール写真が読み込まれると...
Bitmap bitmap = mImage.getDrawingCache();
于 2013-06-26T09:27:25.167 に答える