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中个人资料图片的最佳类型是什么?
答案 0 :(得分:0)
您无法直接在Android App中显示位图。您必须创建一个ImageView并使用setImageBitmap
方法为其提供位图。