Show when an email is selected

This commit is contained in:
str4d
2014-05-16 13:51:31 +00:00
parent 0e8dd0b607
commit 3e4aa63d45
6 changed files with 13 additions and 2 deletions

View File

@@ -63,6 +63,10 @@ public class EmailListAdapter extends ArrayAdapter<Email> {
}
});
if (mSelectedEmails.get(position)) {
((ImageView) v.findViewById(R.id.email_selected)).setVisibility(View.VISIBLE);
}
try {
String fromAddress = email.getOneFromAddress();