我在使用从图库意图返回的对象设置ImageView时遇到了一些问题。我必须做错事但是当我调试它时,一切似乎都在正确的位置。它没有抛出任何异常,它只是将我的图像改为零。
我试图关注stackoverflow上的其他指南和教程来获得我的答案,但我无法让它工作。
这称画廊很好,但它不允许裁剪......
public void onViewCreated(View view, Bundle savedInstanceState) {
final ImageView profileImage = (ImageView) view.findViewById(R.id.profile_user_image);
profileImage.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
Intent i = new Intent(Intent.ACTION_PICK, android.provider.MediaStore.Images.Media.EXTERNAL_CONTENT_URI);
startActivityForResult(i, RESULT_LOAD_IMAGE);
}
});
}
@Override
public void onActivityResult(int requestCode, int resultCode, Intent data) {
super.onActivityResult(requestCode, resultCode, data);
if (requestCode == RESULT_LOAD_IMAGE && resultCode == Activity.RESULT_OK && null != data) {
if (requestCode == RESULT_LOAD_IMAGE && resultCode == Activity.RESULT_OK && null != data) {
Uri picUri = data.getData();
String[] filePathColumn = {MediaStore.Images.Media.DATA};
Cursor cursor = getActivity().getContentResolver().query(picUri,
filePathColumn, null, null, null);
cursor.moveToFirst();
int columnIndex = cursor.getColumnIndex(filePathColumn[0]);
filePath = cursor.getString(columnIndex);
cursor.close();
// Set The Bitmap Data To ImageView
BitmapFactory.Options o = new BitmapFactory.Options();
o.inPreferredConfig = Bitmap.Config.ARGB_8888;
o.inScaled = true;
ImageView bitmapview = (ImageView) _this.findViewById(R.id.profile_user_image);
bitmapview.setScaleType(ImageView.ScaleType.FIT_XY);
//bitmapview.setImageResource(R.drawable.female_icon); // KNOWN FILE
bitmapview.setImageBitmap(BitmapFactory.decodeFile(filePath,o)); // Gallery File.
}
}
}
我不知道自己错过了什么 ImageView限制为150dp x 150dp
我已经尝试将其更改为可以正常工作的已知资源,但无论我尝试什么,使用此方法每次都会失败。
答案 0 :(得分:0)
使用com.android.camera.action.CROP
在Android中裁剪图片。从图库中挑选图片网址后。
Intent i = new Intent("com.android.camera.action.CROP");
i.setClassName("com.android.camera", "com.android.camera.CropImage");
File f = new File(filePath);
Uri uri = Uri.fromFile(f);
i.setData(uri);
i.putExtra("crop", "true");
i.putExtra("aspectX", 1);
i.putExtra("aspectY", 1);
i.putExtra("outputX", 96);
i.putExtra("outputY", 96);
i.putExtra("noFaceDetection", true);
intent.putExtra("return-data", true);
startActivityForResult(intent, REQUEST_CROP_ICON);
当图片选择活动返回时,将选择保存内容。在onActivityResult:
Bundle extras = data.getExtras();
if(extras != null ) {
Bitmap photo = extras.getParcelable("data");
ByteArrayOutputStream stream = new ByteArrayOutputStream();
photo.compress(Bitmap.CompressFormat.JPEG, 75, stream);
/ / The stream to write to a file or directly using the
}