Get high-res contact photo as bitmap below API level 14 Android

前端 未结 2 542
谎友^
谎友^ 2021-01-27 18:08

I need the contact images of my contacts as bitmaps.

I found this code:

        Uri my_contact_Uri = Uri.withAppendedPath(ContactsContract.Contacts.CONTE         


        
2条回答
  •  既然无缘
    2021-01-27 18:12

    It's simple: there is not high res contact picture below API 14. You need to use the low res on lower APIs or set min-sdk to 14.

    It was added in API 14 and lower APIs will never have anything behind the Uri you created by hand.

提交回复
热议问题