我现在做了什么:
我正在使用android在我的应用程序上选择图像,并在我的布局的ImageView上显示它们,有时我得到例外java.lang.OutOfMemoryError: bitmap size exceeds VM budget
。当照片高于500kb时会发生这种情况。
我需要做什么(我不知道怎么做): 然后,我想要做的是只允许用户选择最大500kb的照片。如果用户选择高于500kb的照片,那么,我的应用程序应该显示一个Toast告诉用户只能选择最大500kb的照片....¿怎么做?
这是我的代码:
changeImageButton.setOnClickListener(new OnClickListener() {
public void onClick(View v) {
Intent i = new Intent(Intent.ACTION_PICK,
android.provider.MediaStore.Images.Media.INTERNAL_CONTENT_URI);
startActivityForResult(i, ACTIVITY_SELECT_IMAGE);
}
});
protected void onActivityResult(int requestCode, int resultCode, Intent imageReturnedIntent) {
super.onActivityResult(requestCode, resultCode, imageReturnedIntent);
switch(requestCode) {
case 1:
{
setResult(1);
finish();
}
case ACTIVITY_SELECT_IMAGE:
if(resultCode == RESULT_OK){
Uri selectedImage = imageReturnedIntent.getData();
String[] filePathColumn = {MediaStore.Images.Media.DATA};
Cursor cursor = getContentResolver().query(selectedImage, filePathColumn, null, null, null);
cursor.moveToFirst();
int columnIndex = cursor.getColumnIndex(filePathColumn[0]);
String filePath = cursor.getString(columnIndex);
cursor.close();
selectedPhoto = BitmapFactory.decodeFile(filePath);
//profileImage.setImageBitmap(selectedPhoto);
profileImage.setImageBitmap(Bitmap.createScaledBitmap(selectedPhoto, 80, 80, false));
}
}
}
profileImage是我布局的ImageView。我使用缩放的butmap将图像重新调整为80x80
请给我一些帮助来做到这一点,即时搜索谷歌,我找不到任何东西
答案 0 :(得分:4)
你不能只使用一些标准的Java来获取文件大小,然后检查你的限制吗?
private long getFileSize(String path) {
File file = new File(path);
if (file.exists() && file.isFile()) {
return file.length();
} else {
return 0L;
}
}
答案 1 :(得分:3)
为什么你这么讨厌你的用户?你问的是错误的问题......你根本不需要限制的文件大小。这是解压缩的图像大小问题,你可以控制它。
使用带有BitmapFactory.decodeFile()
参数的BitmapFactory.Options
版本,然后将options参数的inSampleSize
字段设置为适当的值(2或4或其他)。您甚至可能希望首先使用inJustDecodeBounds
来计算出合理的值。