Java Code Examples for android.os.Parcel#createStringArrayList()

The following examples show how to use android.os.Parcel#createStringArrayList() . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: BusinessPayment.java    From px-android with MIT License 6 votes vote down vote up
protected BusinessPayment(final Parcel in) {
    iconId = in.readInt();
    title = in.readString();
    shouldShowPaymentMethod = in.readByte() != 0;
    exitActionPrimary = in.readParcelable(ExitAction.class.getClassLoader());
    exitActionSecondary = in.readParcelable(ExitAction.class.getClassLoader());
    decorator = Decorator.fromName(in.readString());
    help = in.readString();
    statementDescription = in.readString();
    receiptId = in.readString();
    imageUrl = in.readString();
    topFragment = in.readParcelable(ExternalFragment.class.getClassLoader());
    bottomFragment = in.readParcelable(ExternalFragment.class.getClassLoader());
    importantFragment = in.readParcelable(ExternalFragment.class.getClassLoader());
    paymentStatus = in.readString();
    paymentStatusDetail = in.readString();
    subtitle = in.readString();
    paymentMethodId = in.readString();
    paymentTypeId = in.readString();
    receiptIdList = in.createStringArrayList();
    shouldShowReceipt = in.readByte() != 0;
}
 
Example 2
Source File: ExtGrep.java    From 920-text-editor-v2 with Apache License 2.0 6 votes vote down vote up
protected ExtGrep(Parcel in) {
    this.invertMatch = in.readByte() != 0;
    this.ignoreCase = in.readByte() != 0;
    this.maxCount = in.readInt();
    this.printFileNameOnly = in.readByte() != 0;
    this.printByteOffset = in.readByte() != 0;
    this.quiet = in.readByte() != 0;
    this.printCountOnly = in.readByte() != 0;
    this.printFilesWithoutMatch = in.readByte() != 0;
    this.wordRegex = in.readByte() != 0;
    this.lineRegex = in.readByte() != 0;
    this.noMessages = in.readByte() != 0;
    this.printFileName = in.readByte() != 0;
    this.printMatchOnly = in.readByte() != 0;
    this.printLineNumber = in.readByte() != 0;
    this.recurseDirectories = in.readByte() != 0;
    this.skipDirectories = in.readByte() != 0;
    this.excludeFilePatterns = in.createStringArrayList();
    this.useInclude = in.readByte() != 0;
    this.useExclude = in.readByte() != 0;
    this.beforeContext = in.readInt();
    this.afterContext = in.readInt();
    this.regex = in.readString();
    this.filesToProcess = new ArrayList<File>();
    in.readList(this.filesToProcess, List.class.getClassLoader());
}
 
Example 3
Source File: CompetitionModel.java    From 1Rramp-Android with MIT License 6 votes vote down vote up
protected CompetitionModel(Parcel in) {
  this.mParticipationHashtag = in.readString();
  this.mPostCount = in.readInt();
  this.mParticipantCount = in.readInt();
  this.mJudges = in.createTypedArrayList(JudgeModel.CREATOR);
  this.mRules = in.readString();
  this.mEndsAt = in.readString();
  this.mStartsAt = in.readString();
  this.mDescription = in.readString();
  this.mTitle = in.readString();
  this.mImage = in.readString();
  this.mCreatedAt = in.readString();
  this.mAdmin = in.readParcelable(CompetitionAdmin.class.getClassLoader());
  this.mId = in.readString();
  this.communities = in.createTypedArrayList(CommunityModel.CREATOR);
  this.prizes = in.createStringArrayList();
  this.winners_announced = in.readByte() != 0;
}
 
Example 4
Source File: VideoDetails.java    From youtube-jextractor with GNU General Public License v2.0 6 votes vote down vote up
protected VideoDetails(Parcel in) {
    isOwnerViewing = in.readInt() != 0;
    thumbnail = in.readParcelable(Thumbnail.class.getClassLoader());
    isLiveContent = in.readInt() != 0;
    keywords = in.createStringArrayList();
    author = in.readString();
    lengthSeconds = in.readString();
    videoId = in.readString();
    shortDescription = in.readString();
    isPrivate = in.readInt() != 0;
    title = in.readString();
    isCrawlable = in.readInt() != 0;
    averageRating = in.readDouble();
    isUnpluggedCorpus = in.readInt() != 0;
    allowRatings = in.readInt() != 0;
    viewCount = in.readString();
    channelId = in.readString();
}
 
Example 5
Source File: Blog.java    From CoreModule with Apache License 2.0 5 votes vote down vote up
protected Blog(Parcel in) {
    this.title = in.readString();
    this.description = in.readString();
    this.pubDate = in.readString();
    this.link = in.readString();
    this.recommend = in.readString();
    this.image = in.readString();
    this.content = in.readString();
    this.author = in.readString();
    this.tag = in.createStringArrayList();
    this.category = in.createStringArrayList();
}
 
Example 6
Source File: Selection.java    From moVirt with Apache License 2.0 5 votes vote down vote up
public Selection(Parcel in) {
    this.appendArgs = in.createStringArrayList();
    this.clusterId = in.readString();

    if (in.readInt() < 0) {
        account = null;
    } else {
        account = new MovirtAccount(in);
    }
}
 
Example 7
Source File: ResultData.java    From data-mediator with Apache License 2.0 5 votes vote down vote up
protected ResultData(Parcel in) {
    this.intergers = new ArrayList<Integer>();
    in.readList(this.intergers, Integer.class.getClassLoader());
    this.characters = new ArrayList<Character>();
    in.readList(this.characters, Character.class.getClassLoader());
    this.intents = in.createTypedArrayList(Intent.CREATOR);
    this.testStrs = in.createStringArray();
    this.strs = in.createStringArrayList();
}
 
Example 8
Source File: Issue.java    From android with MIT License 5 votes vote down vote up
protected Issue(Parcel in) {
    id = in.readString();
    name = in.readString();
    reason = in.readString();
    script = in.readString();
    link = in.readString();
    linkTitle = in.readString();
    active = in.readInt() != 0;
    isSplit = in.readInt() != 0;
    contacts = in.createTypedArrayList(Contact.CREATOR);
    contactAreas = in.createStringArrayList();
    outcomeModels = in.createTypedArrayList(Outcome.CREATOR);
    categories = in.createTypedArray(Category.CREATOR);
}
 
Example 9
Source File: VMParams.java    From VMLibrary with Apache License 2.0 5 votes vote down vote up
@Override
public VMParams createFromParcel(Parcel in) {
    VMParams p = new VMParams();
    p.what = in.readInt();
    p.arg0 = in.readInt();
    p.arg1 = in.readInt();
    p.str0 = in.readString();
    p.str1 = in.readString();
    p.strList = in.createStringArrayList();
    p.obj = in.readParcelable(Parcelable.class.getClassLoader());
    return p;
}
 
Example 10
Source File: Nabi.java    From BiodataNabi with MIT License 5 votes vote down vote up
Nabi(Parcel in) {
    this.nama = in.readString();
    this.alias = in.readString();
    this.usia = in.readString();
    this.periode = in.readString();
    this.tempatDiUtus = in.readString();
    this.tempatWafat = in.readString();
    this.disebutDalamAlquran = in.readString();
    this.sebutanKaum = in.readString();
    this.jumlahKeturunan = in.readString();
    this.garisKeturunan = in.createStringArrayList();
}
 
Example 11
Source File: Story.java    From SuperRecyclerView with Apache License 2.0 5 votes vote down vote up
protected Story(Parcel in) {
    this.id = in.readInt();
    this.title = in.readString();
    this.type = in.readInt();
    this.images = in.createStringArrayList();
    this.image = in.readString();
    this.body = in.readString();
    this.css = in.createStringArrayList();
}
 
Example 12
Source File: BreadcrumbItem.java    From BreadcrumbsView with MIT License 4 votes vote down vote up
private BreadcrumbItem(Parcel in) {
    mSelectedIndex = in.readInt();
    mItems = in.createStringArrayList();
}
 
Example 13
Source File: QuizModel.java    From BuildmLearn-Toolkit-Android with BSD 3-Clause "New" or "Revised" License 4 votes vote down vote up
private QuizModel(Parcel in) {
    this.question = in.readString();
    this.options = in.createStringArrayList();
    this.correctAnswer = in.readInt();
}
 
Example 14
Source File: Connection.java    From Loop with Apache License 2.0 4 votes vote down vote up
protected Connection(Parcel in) {
    this.uri = in.readString();
    this.options = in.createStringArrayList();
    this.total = in.readInt();
}
 
Example 15
Source File: BookSubSortBean.java    From NovelReader with MIT License 4 votes vote down vote up
protected BookSubSortBean(Parcel in) {
    major = in.readString();
    mins = in.createStringArrayList();
}
 
Example 16
Source File: LargePreviewSet.java    From MHViewer with Apache License 2.0 4 votes vote down vote up
protected LargePreviewSet(Parcel in) {
    this.mPositionList = in.readParcelable(IntList.class.getClassLoader());
    this.mImageUrlList = in.createStringArrayList();
    this.mPageUrlList = in.createStringArrayList();
}
 
Example 17
Source File: SaveRequest.java    From android_9.0.0_r45 with Apache License 2.0 4 votes vote down vote up
private SaveRequest(@NonNull Parcel parcel) {
    this(parcel.createTypedArrayList(FillContext.CREATOR),
            parcel.readBundle(), parcel.createStringArrayList());
}
 
Example 18
Source File: Action.java    From AgentWeb with Apache License 2.0 4 votes vote down vote up
protected Action(Parcel in) {
	mPermissions = in.createStringArrayList();
	mAction = in.readInt();
	mFromIntention = in.readInt();
}
 
Example 19
Source File: ClipDescription.java    From android_9.0.0_r45 with Apache License 2.0 4 votes vote down vote up
ClipDescription(Parcel in) {
    mLabel = TextUtils.CHAR_SEQUENCE_CREATOR.createFromParcel(in);
    mMimeTypes = in.createStringArrayList();
    mExtras = in.readPersistableBundle();
    mTimeStamp = in.readLong();
}
 
Example 20
Source File: ReplayStepInfoBean.java    From SoloPi with Apache License 2.0 4 votes vote down vote up
protected ReplayStepInfoBean(Parcel in) {
    this.prepareActionList = in.createStringArrayList();
    this.findNode = in.readParcelable(OperationNode.class.getClassLoader());
}