12/04/2012, 15:16
|
Usuario no validado | | Fecha de Ingreso: abril-2012
Mensajes: 134
Antigüedad: 12 años, 7 meses Puntos: 0 | |
Respuesta: enviar imagen al pulsar item de list activity Ya tengo esto planteado asi:
public void onItemClick(AdapterView<?> parent, View view,int position, long id) {
switch (position) {
case 0:
Intent imagen0 = new Intent(LaVerdadDeEllos.this, MostrarImgEl.class);
imagen0.putExtra("el_img0", position);
startActivity(imagen0);
break;
case 1:
Intent imagen1 = new Intent(LaVerdadDeEllos.this, MostrarImgEl.class);
imagen1.putExtra("el_img1", position);
startActivity(imagen1);
break;
case 2:
Intent imagen2 = new Intent(LaVerdadDeEllos.this, MostrarImgEl.class);
imagen2.putExtra("el_img2", position);
startActivity(imagen2);
break;
}
pero en la otra ctividad no tengo claro como rescatar las imagenes en R.dragable
ImageView image1 = (ImageView) findViewById(R.id.img_el);
Bundle bundle = new Bundle();
int numImg = bundle.getInt("el_img0");
Última edición por maurikius1983; 12/04/2012 a las 16:38 |