public void setEstacion() {
   Estacion estacion = estaciones.get(item);
   String id = estacion.getId();
   String maximo = String.format("%d Personas", estacion.getMaximo());
   String tipo = getResources().getString(R.string.action_buy);
   if (estacion.getTipo()) {
     tipo = getResources().getString(R.string.action_pay);
   }
   txtId.setText(id);
   txtMaximo.setText(maximo);
   txtTipo.setText(tipo);
 }
    @Override
    public void onClick(View view) {
      Estacion estacion = estaciones.get(item);

      SharedPreferences pref =
          getSharedPreferences(getResources().getString(R.string.pref_name), Context.MODE_PRIVATE);
      SharedPreferences.Editor editor = pref.edit();

      editor.putString(getResources().getString(R.string.pref_station_id), estacion.getId());
      editor.putString(getResources().getString(R.string.pref_station), estacion.getNombre());
      editor.putInt(getResources().getString(R.string.pref_max), estacion.getMaximo());
      editor.putBoolean(getResources().getString(R.string.pref_type), estacion.getTipo());
      editor.commit();

      finish();
    }