Show identity color in selector

This commit is contained in:
M66B
2019-08-17 09:56:42 +02:00
parent 6899d416ea
commit b8d2dc67d1
3 changed files with 47 additions and 12 deletions

View File

@@ -3095,6 +3095,9 @@ public class FragmentCompose extends FragmentBase {
TupleIdentityEx identity = identities.get(position);
View vwColor = view.findViewById(R.id.vwColor);
vwColor.setBackgroundColor(identity.color == null ? Color.TRANSPARENT : identity.color);
TextView text1 = view.findViewById(android.R.id.text1);
text1.setText(identity.accountName + "/" + identity.getDisplayName() + (identity.primary ? "" : ""));