用户类中个人资料图片的最佳类型是什么?

时间:2013-06-14 00:50:11

标签: android image file bitmap drawable

UserVo,JAVA

public class UserVo extends MemberVo {

    protected String password;
    protected String phoneNumber;
    protected int level;

    // Profile Image
    protected CharSequence profileImagePath;
    protected Bitmap profileImageBitmap;
    protected Drawable profileImageDrawable;
    protected File profileImageFile;
}

我制作应用。我需要使用个人资料图片。

原始图像类型是位图。但我认为位图会发生内存泄漏......(对吧?)

所以我将位图保存到存储中的文件。

UserVo中个人资料图片的最佳类型是什么?

1 个答案:

答案 0 :(得分:0)

您无法直接在Android App中显示位图。您必须创建一个ImageView并使用setImageBitmap方法为其提供位图。