删除联系人选择选项表单文件选择选项

Jog*_*uda 8 java android picking android-intent

我打开文件选择Intent,Bellow代码

Intent intent_upload = new Intent();
    intent_upload.setType("*/*");
    intent_upload.setAction(Intent.ACTION_GET_CONTENT);
    activity.startActivityForResult(intent_upload, Constants.FILE_PICK_REQUEST_CODE);
Run Code Online (Sandbox Code Playgroud)

我想从列表中删除联系人选项,请任何人都可以帮助.

谢谢在此输入图像描述

hha*_*ech 6

使用下面的代码,我认为它可以帮助你,也可以参考链接

Intent intent_upload = new Intent();
        intent_upload.setType("*/*");
        intent_upload.setAction(Intent.ACTION_GET_CONTENT);
        intent_upload.addCategory(Intent.CATEGORY_OPENABLE);
        activity.startActivityForResult(intent_upload, Constants.FILE_PICK_REQUEST_CODE);
Run Code Online (Sandbox Code Playgroud)