private String getSimlarId(final int position) {
    final ContactsAdapter contactsAdapter = (ContactsAdapter) getListAdapter();
    if (contactsAdapter == null) {
      return null;
    }

    final ContactDataComplete contact = contactsAdapter.getItem(position);
    return contact == null ? null : contact.simlarId;
  }