Ver Mensaje Individual
  #3 (permalink)  
Antiguo 09/09/2012, 15:12
iunix
 
Fecha de Ingreso: junio-2012
Mensajes: 29
Antigüedad: 12 años, 5 meses
Puntos: 4
Respuesta: No consigo pasar una variable a otra activity

Hola,

Usa un Bundle y así no necesitas hacer la variable pública y estática http://developer.android.com/reference/android/os/Bundle.html

Así,

Código:
    Intent i = new Intent(MostrarLugarActivity.this, EditarLugarActivity.class);				
				Bundle bundle = new Bundle();
                                bundle.putObjeto(K, V);
                                i.putExtras(bundle);
				startActivity(i);

Saludos