伙计们!我在活动中有一个按钮,单击时将执行以下代码:
Intent intent = new Intent(Intent.ACTION_GET_CONTENT);
intent.setType("image/*");
intent.putExtra("return-data", true);
startActivityForResult(intent, RESULT_IMAGE_ALBUMS);
它将打开相册并让您选择图像。但它没有在onActivityResult中进入断点,断点在第一行:
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
if (resultCode == RESULT_OK && requestCode == RESULT_IMAGE_ALBUMS) { //break point
...
//get the image through uri, and show it on image view.
}
}
令我惊讶的是图像确实显示在图像视图上。
有人知道吗?我真的很感谢你的帮助。