protected void onActivityResult(int requestCode, int resultCode, Intent data) {
super.onActivityResult(requestCode,resultCode,data)
if (requestCode == Selectedimage && resultCode == RESULT_OK && data != null) {
Uri pickedImage = data.getData();
Intent send= new Intent(Selection.this,Imagepage.class);
send.putExtra("pickedImage",pickedImage.toString());
startActivity(send);
}
}
what is the use of adding that super.onActivityResult
line ? and also when am adding that, its showing some error.