@Override
 public View newView(Context context, Cursor cursor, ViewGroup parent) {
   View view = mInflater.inflate(R.layout.select_key_item, null);
   ViewHolderItem holder = new ViewHolderItem();
   holder.view = view;
   holder.mainUserId = (TextView) view.findViewById(R.id.select_key_item_name);
   holder.mainUserIdRest = (TextView) view.findViewById(R.id.select_key_item_email);
   holder.creation = (TextView) view.findViewById(R.id.select_key_item_creation);
   holder.statusIcon = (ImageView) view.findViewById(R.id.select_key_item_status_icon);
   holder.selected = (CheckBox) view.findViewById(R.id.selected);
   view.setTag(holder);
   return view;
 }