I need Open my gallery in mobile phone and select one picture which opened in imageview on activity.. nothing hard.. but I have code and thise code in simulator (genymotion)
Did you try this?
public void onActivityResult( ....) { If ( resultCode == RESULT_OK) { Uri selectedImg = data.getData(); Bitmap bitmap = MediaStore.Images.Media.getBitmap(getContentResolver, selectedImg); If(bitmap != null) { yourImageView.setImageBitmap(bitmap); } } }