List identity email address instead of user name

The email address will be more recognizable than the user name, which could be anything
This commit is contained in:
M66B
2018-08-06 09:27:01 +00:00
parent 4d362165ce
commit ee03489a31
2 changed files with 5 additions and 5 deletions

View File

@@ -52,7 +52,7 @@ public class AdapterIdentity extends RecyclerView.Adapter<AdapterIdentity.ViewHo
TextView tvName;
ImageView ivSync;
TextView tvHost;
TextView tvUser;
TextView tvEmail;
ViewHolder(View itemView) {
super(itemView);
@@ -62,7 +62,7 @@ public class AdapterIdentity extends RecyclerView.Adapter<AdapterIdentity.ViewHo
tvName = itemView.findViewById(R.id.tvName);
ivSync = itemView.findViewById(R.id.ivSync);
tvHost = itemView.findViewById(R.id.tvHost);
tvUser = itemView.findViewById(R.id.tvUser);
tvEmail = itemView.findViewById(R.id.tvEmail);
}
private void wire() {
@@ -197,7 +197,7 @@ public class AdapterIdentity extends RecyclerView.Adapter<AdapterIdentity.ViewHo
holder.tvName.setText(identity.name);
holder.ivSync.setVisibility(identity.synchronize ? View.VISIBLE : View.INVISIBLE);
holder.tvHost.setText(String.format("%s:%d", identity.host, identity.port));
holder.tvUser.setText(identity.user);
holder.tvEmail.setText(identity.email);
holder.wire();
}