我按照此页面在SD卡How to select and crop an image in android?
上裁剪图像我将裁剪后的图片放在 /data/data/package.name/files 中,代码在Android 2.2及更高版本上运行正常,但是当我在Android 2.1上运行此代码后,选择区域后我想要并点击“保存”,我总是遇到“FAILED BINDER TRANSACTION”错误。
为什么以及该错误是什么?
答案 0 :(得分:4)
你想要这样: -
How to Select and Crop Image on Android?
下载示例: - https://github.com/lorensiuswlt/AndroidImageCrop
Android 2.1只需要三次更改: -
在main.xml中 - >写wrap_content而不是matchparent。
在AndroidManifest.xml中 - &gt; <uses-sdk android:minSdkVersion="7" />
在default.properties中 - &gt; target=android-7
祝你好运。