when ever i am not selecting any image after opening the gallery and goin back my app crashes. plz help me out guys. this is a program to upload image to server selecting from a
You can handle it this way:
@Override
public void onActivityResult(int requestCode, int resultCode, Intent data) {
if (requestCode == 1 && resultCode == RESULT_OK && data != null) {
//your code
}
else {
//alert of "No image was selected"
}
}
Don't perform any operation on data
if its null. So it won't give a crash.
Hope it helps.