diff --git a/app/src/main/java/com/beemdevelopment/aegis/ui/views/EntryHolder.java b/app/src/main/java/com/beemdevelopment/aegis/ui/views/EntryHolder.java index 05e5a4f0..ed4be235 100644 --- a/app/src/main/java/com/beemdevelopment/aegis/ui/views/EntryHolder.java +++ b/app/src/main/java/com/beemdevelopment/aegis/ui/views/EntryHolder.java @@ -166,6 +166,7 @@ public class EntryHolder extends RecyclerView.ViewHolder { profileNameLayoutParams = (RelativeLayout.LayoutParams) _profileName.getLayoutParams(); profileNameLayoutParams.removeRule(RelativeLayout.END_OF); profileNameLayoutParams.addRule(RelativeLayout.BELOW, R.id.profile_issuer); + profileNameLayoutParams.setMarginStart(0); _profileName.setLayoutParams(profileNameLayoutParams); _profileName.setVisibility(View.VISIBLE); @@ -178,6 +179,7 @@ public class EntryHolder extends RecyclerView.ViewHolder { default: profileNameLayoutParams = (RelativeLayout.LayoutParams) _profileName.getLayoutParams(); profileNameLayoutParams.addRule(RelativeLayout.END_OF, R.id.profile_issuer); + profileNameLayoutParams.setMarginStart(24); profileNameLayoutParams.removeRule(RelativeLayout.BELOW); _profileName.setLayoutParams(profileNameLayoutParams); _profileName.setVisibility(View.VISIBLE);