add false argument to inflate.
This commit is contained in:
parent
cf66e091b5
commit
1d3a6125d2
|
@ -24,7 +24,7 @@ public class ListItemAdapter extends ArrayAdapter<ListItem> {
|
||||||
.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
|
.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
|
||||||
ListItem item = getItem(position);
|
ListItem item = getItem(position);
|
||||||
if (view == null) {
|
if (view == null) {
|
||||||
view = (View) inflater.inflate(R.layout.contact, parent);
|
view = (View) inflater.inflate(R.layout.contact, parent, false);
|
||||||
}
|
}
|
||||||
TextView name = (TextView) view.findViewById(R.id.contact_display_name);
|
TextView name = (TextView) view.findViewById(R.id.contact_display_name);
|
||||||
TextView jid = (TextView) view.findViewById(R.id.contact_jid);
|
TextView jid = (TextView) view.findViewById(R.id.contact_jid);
|
||||||
|
|
Loading…
Reference in New Issue