Example usage for android.os Bundle putCharSequenceArrayList

List of usage examples for android.os Bundle putCharSequenceArrayList

Introduction

In this page you can find the example usage for android.os Bundle putCharSequenceArrayList.

Prototype

@Override
public void putCharSequenceArrayList(@Nullable String key, @Nullable ArrayList<CharSequence> value) 

Source Link

Document

Inserts an ArrayList value into the mapping of this Bundle, replacing any existing value for the given key.

Usage

From source file:id.ridon.keude.UpdateService.java

protected void sendRepoErrorStatus(int statusCode, ArrayList<CharSequence> repoErrors) {
    if (receiver != null) {
        Bundle resultData = new Bundle();
        resultData.putCharSequenceArrayList(RESULT_REPO_ERRORS, repoErrors);
        receiver.send(statusCode, resultData);
    }//from   w  w  w.j a v  a 2 s  .co  m
}