public boolean isInit(Context context) { boolean hasKW = !DBHelper.getKeywords(context, id).isEmpty(); boolean hasContacts = !DBHelper.getContactsPhoneOnly(context, id).isEmpty(); if (hasKW && hasContacts) { return true; } return false; }
public long getNbContacts(Context context) { return DBHelper.getContactsPhoneOnly(context, id).size(); }
@Override protected void onResume() { super.onResume(); list_id = getIntent().getExtras().getLong("list_id"); setTitle(DBHelper.getDiffusionList(getBaseContext(), list_id).name); }