1.场景还原
在适配的过程中,痛并快乐着!今天又冒出一个适配问题:Android4.4以下手机选择图片正常;4.4以上会偶然出现选择的图片跟返回的图片不一致,我想这就是没有去往上兼容了。
2.知识回顾
在Android4.4之前,一般选择系统图库会使用以下代码:
Intent intent = new Intent(); intent.setType("image/*"); intent.setAction(Intent.ACTION_GET_CONTENT); startActivityForResult(intent, REQUEST_CODE_IMA