我创建了一个 android 应用程序,它从图库中选择一张图片并显示预览。
@Override
public void onClick(View v) {
if (v.getId()== R.id.button){
Intent intent = new Intent();
intent.setType("image/*");
intent.setAction(Intent.ACTION_PICK);
startActivityForResult(Intent.createChooser(intent,
"Select Picture"), SELECT_PICTURE);
}
选择图像后,应显示预览。
然而,它只是第一次起作用。后来当我点击返回时,它显示outOfMemoryException