klinker41 / android-chips

Chips in your AutoCompleteTextView on Android

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

submitItem not displaying contact photo

abidfs opened this issue · comments

Hi,
When I call submitItem(displayName, strMailId, Uri.parse(photoUri), photoBytes) on RecipientEditTextView, it does not display contact photo

Hi, I had the same issue but fixed it by making sure my Uri was correct. In my case all I had to do was use a .trim() on its string value before parsing it. Hope this helps

try

RecipientEntry entry = RecipientEntry.constructGeneratedEntry(name,s,true);
phoneRetv.addRecipient(entry);