Mark contacts as not junk

This commit is contained in:
M66B
2021-09-04 17:28:15 +02:00
parent 4d89cfa8cd
commit 712e96c5e0
4 changed files with 75 additions and 2 deletions

View File

@@ -126,6 +126,9 @@ public class AdapterContact extends RecyclerView.Adapter<AdapterContact.ViewHold
} else if (contact.type == EntityContact.TYPE_TO) {
ivType.setImageResource(R.drawable.twotone_call_made_24);
ivType.setContentDescription(context.getString(R.string.title_accessibility_to));
} else if (contact.type == EntityContact.TYPE_NO_JUNK) {
ivType.setImageResource(R.drawable.twotone_report_off_24);
ivType.setContentDescription(context.getString(R.string.title_no_junk));
} else {
ivType.setImageDrawable(null);
ivType.setContentDescription(null);