我正在开展一个项目,我需要裁剪图片来设置个人资料图片,
我更喜欢这个link,因为当我在Emulator
上测试它时,这对我来说是完美的,但问题是,当我在My Tab上运行我的应用程序时,我遇到了问题。
它给了我标题为Choose Crop App
的对话框,但没有选项意味着没有应用程序可以选择裁剪图像..
答案 0 :(得分:0)
final CropImageView cropImageView = (CropImageView) findViewById(R.id.CropImageView);
cropImageView.setImageResource(R.drawable.bike01);
cropImageView.setAspectRatio(DEFAULT_ASPECT_RATIO_VALUES, DEFAULT_ASPECT_RATIO_VALUES);
crop.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View arg0) {
// TODO Auto-generated method stub
croppedImage = cropImageView.getCroppedImage();
ImageView croppedImageView = (ImageView) findViewById(R.id.croppedImageView);
croppedImageView.setImageBitmap(croppedImage);
}
});
使用这一个库运行此代码lib!