Example usage for android.os Parcel readString

List of usage examples for android.os Parcel readString

Introduction

In this page you can find the example usage for android.os Parcel readString.

Prototype

public final String readString() 

Source Link

Document

Read a string value from the parcel at the current dataPosition().

Usage

From source file:com.eTilbudsavis.etasdk.model.Links.java

private Links(Parcel in) {
    this.mWebshop = in.readString();
}

From source file:com.hannesdorfmann.mosby3.MosbySavedState.java

protected MosbySavedState(Parcel in, ClassLoader loader) {
    super(in, loader);
    this.mosbyViewId = in.readString();
}

From source file:no.ntnu.osnap.social.models.Person.java

public Person(Parcel in) throws JSONException {
    super(in.readString());
}

From source file:com.artemchep.horario.models.Notification.java

public Notification(Parcel source) {
    key = source.readString();
    title = source.readString();/*ww  w . j  a  va  2  s  .co m*/
    summary = source.readString();
    author = source.readString();
    priority = source.readInt();
    timestamp = source.readLong();
}

From source file:com.getchute.android.photopickerplus.models.OptionsModel.java

public OptionsModel(Parcel in) {
    this();
    cliendId = in.readString();
}

From source file:com.clover.sdk.v1.customer.EmailAddress.java

EmailAddress(Parcel in) throws JSONException {
    String json = in.readString();
    this.data = new JSONObject(json);
}

From source file:com.clover.sdk.v1.customer.PhoneNumber.java

PhoneNumber(Parcel in) throws JSONException {
    String json = in.readString();
    this.data = new JSONObject(json);
}

From source file:ir.aarani.bazaar.billing.SkuDetails.java

protected SkuDetails(Parcel in) {
    this.productId = in.readString();
    this.title = in.readString();
    this.description = in.readString();
    this.isSubscription = in.readByte() != 0;
    this.currency = in.readString();
    this.priceValue = in.readDouble();
    this.priceLong = in.readLong();
    this.priceText = in.readString();
}

From source file:edgargtzg.popularmovies.MovieItemReview.java

/**
 * Populating class variables.//from  w  ww.  jav a2 s.c  o m
 *
 * @param in the parcel request.
 */
protected MovieItemReview(Parcel in) {
    mReviewAuthor = in.readString();
    mReviewContent = in.readString();
}

From source file:org.opensourcetlapp.tl.Structs.PostInfo.java

public PostInfo(Parcel source) {
    this.topicURL = source.readString();
    this.topicString = source.readString();
    this.topicStarterString = source.readString();
    this.repliesString = source.readString();
    this.viewsString = source.readString();
    this.lastMessageString = source.readString();
    this.imageString = source.readString();
}