Re: [android-developers] Help! i dont receive value of attributes (parcelable)

2011-12-05 Thread TreKing
On Thu, Dec 1, 2011 at 11:40 PM, diego scafati wrote: > private void readFromParcel(Parcel in) { >in.setDataPosition(0); // > <-- WHY? >codigodeusuario=in.readString(); >} > That's probably a problem. Take that out and change your co

[android-developers] Help! i dont receive value of attributes (parcelable)

2011-12-02 Thread diego scafati
Hi, im trying to send an object to another activity, but i dont receive the value of attributes, i recive two simbols (like ??) Clase1 extends activity{ Intent i = new Intent(this, Clase2.class ); Bundle bundle = new Bundle(); bundle.putParcelable("user", user); //Usuario