Export the Contacts as VCF file

前端 未结 8 675
梦毁少年i
梦毁少年i 2020-12-01 03:16

I want to export the Phone contacts to External storage area. I didn\'t work with this type of method. Anyone guide me to do this?

8条回答
  •  轻奢々
    轻奢々 (楼主)
    2020-12-01 03:58

    It's working for me and as well working in Nougat devices. Thank you so much @pratik and @sanat .

    public static void getVCF(Context context)
        {
    
            final String vfile = "POContactsRestore.vcf";
    
            Cursor phones = context.getContentResolver().query(ContactsContract.CommonDataKinds.Phone.CONTENT_URI, null,null, null, null);
    
            phones.moveToFirst();
            for(int i =0;i

提交回复
热议问题