Remove Contact select option form file select options

Viewed 379

I am opening file pick Intent with, Bellow code

Intent intent_upload = new Intent();
    intent_upload.setType("*/*");
    intent_upload.setAction(Intent.ACTION_GET_CONTENT);
    activity.startActivityForResult(intent_upload, Constants.FILE_PICK_REQUEST_CODE);

I Want remove Contact option from list, please can anyone help.

Thanksenter image description here

3 Answers
Related