Fix display of organization field when reusing view
This commit is contained in:
parent
822478f457
commit
bb74f21dfb
1 changed files with 1 additions and 0 deletions
|
@ -504,6 +504,7 @@ public class ContactsListFragment extends Fragment implements OnClickListener, O
|
||||||
String org = contact.getOrganization();
|
String org = contact.getOrganization();
|
||||||
if (org != null && !org.isEmpty()) {
|
if (org != null && !org.isEmpty()) {
|
||||||
organization.setText(org);
|
organization.setText(org);
|
||||||
|
organization.setVisibility(View.VISIBLE);
|
||||||
} else {
|
} else {
|
||||||
organization.setVisibility(View.GONE);
|
organization.setVisibility(View.GONE);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue