Question

I am trying to test to write to a Parcel in Android test but it doesnt't work. s==null! What is wrong?

public class scraptest extends AndroidTestCase {

    public void test() {

        Parcel parcel=Parcel.obtain();
        parcel.writeString("sdfsdf");
        String s=parcel.readString();

    }
}
Was it helpful?

Solution

One must reset the Parcel's data position with: parcel.setDataPosition(0);

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top