further npe checks
This commit is contained in:
parent
aaeba697bd
commit
8f62d95e1f
|
@ -128,7 +128,8 @@ public class Bookmark extends Element implements ListItem {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
needle = needle.toLowerCase(Locale.US);
|
needle = needle.toLowerCase(Locale.US);
|
||||||
return getJid().toString().contains(needle) ||
|
final Jid jid = getJid();
|
||||||
|
return (jid != null && jid.toString().contains(needle)) ||
|
||||||
getDisplayName().toLowerCase(Locale.US).contains(needle) ||
|
getDisplayName().toLowerCase(Locale.US).contains(needle) ||
|
||||||
matchInTag(needle);
|
matchInTag(needle);
|
||||||
}
|
}
|
||||||
|
|
|
@ -5,6 +5,8 @@ import java.util.List;
|
||||||
import eu.siacs.conversations.R;
|
import eu.siacs.conversations.R;
|
||||||
import eu.siacs.conversations.entities.ListItem;
|
import eu.siacs.conversations.entities.ListItem;
|
||||||
import eu.siacs.conversations.ui.XmppActivity;
|
import eu.siacs.conversations.ui.XmppActivity;
|
||||||
|
import eu.siacs.conversations.xmpp.jid.Jid;
|
||||||
|
|
||||||
import android.content.Context;
|
import android.content.Context;
|
||||||
import android.content.SharedPreferences;
|
import android.content.SharedPreferences;
|
||||||
import android.preference.PreferenceManager;
|
import android.preference.PreferenceManager;
|
||||||
|
@ -36,8 +38,8 @@ public class ListItemAdapter extends ArrayAdapter<ListItem> {
|
||||||
if (view == null) {
|
if (view == null) {
|
||||||
view = inflater.inflate(R.layout.contact, parent, false);
|
view = inflater.inflate(R.layout.contact, parent, false);
|
||||||
}
|
}
|
||||||
TextView name = (TextView) view.findViewById(R.id.contact_display_name);
|
TextView tvName = (TextView) view.findViewById(R.id.contact_display_name);
|
||||||
TextView jid = (TextView) view.findViewById(R.id.contact_jid);
|
TextView tvJid = (TextView) view.findViewById(R.id.contact_jid);
|
||||||
ImageView picture = (ImageView) view.findViewById(R.id.contact_photo);
|
ImageView picture = (ImageView) view.findViewById(R.id.contact_photo);
|
||||||
LinearLayout tagLayout = (LinearLayout) view.findViewById(R.id.tags);
|
LinearLayout tagLayout = (LinearLayout) view.findViewById(R.id.tags);
|
||||||
|
|
||||||
|
@ -54,9 +56,13 @@ public class ListItemAdapter extends ArrayAdapter<ListItem> {
|
||||||
tagLayout.addView(tv);
|
tagLayout.addView(tv);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
final Jid jid = item.getJid();
|
||||||
jid.setText(item.getJid().toString());
|
if (jid != null) {
|
||||||
name.setText(item.getDisplayName());
|
tvJid.setText(jid.toString());
|
||||||
|
} else {
|
||||||
|
tvJid.setText("");
|
||||||
|
}
|
||||||
|
tvName.setText(item.getDisplayName());
|
||||||
picture.setImageBitmap(activity.avatarService().get(item,
|
picture.setImageBitmap(activity.avatarService().get(item,
|
||||||
activity.getPixel(48)));
|
activity.getPixel(48)));
|
||||||
return view;
|
return view;
|
||||||
|
|
Loading…
Reference in New Issue