app crashes when going back from gallery without selecting any image

前端 未结 3 1297
迷失自我
迷失自我 2021-01-29 09:39

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

3条回答
  •  清酒与你
    2021-01-29 10:02

    Add below line in your code. If the operation is cancelled, you will not get RESULT_OK

    public void onActivityResult(int requestCode, int resultCode, Intent data) {
    
    if (resultCode != RESULT_OK) 
          return;
    

提交回复
热议问题