質問

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();

    }
}
役に立ちましたか?

解決

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

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top