Example usage for android.os Parcelable interface-usage

List of usage examples for android.os Parcelable interface-usage

Introduction

In this page you can find the example usage for android.os Parcelable interface-usage.

Usage

From source file com.example.testmoodle.util.Document.java

public class Document implements Parcelable {
    private String type;
    private String fileName;
    private String filePath;
    private int fileSize;
    private String fileURL;

From source file ca.frozen.rpicameraviewer.classes.Settings.java

public class Settings implements Parcelable {
    // local constants
    private final static String TAG = "Settings";

    // instance variables
    public String cameraName;

From source file com.aokyu.dev.pocket.content.Image.java

public class Image extends MediaItem implements Parcelable {

    private final class Parameter {

        public static final String ITEM_ID = "item_id";
        public static final String IMAGE_ID = "image_id";

From source file com.aokyu.dev.pocket.content.Video.java

public class Video extends MediaItem implements Parcelable {

    public final class Parameter {

        public static final String ITEM_ID = "item_id";
        public static final String VIDEO_ID = "video_id";

From source file com.frodo.github.bean.dto.response.Repo.java

public class Repo extends ShaUrl implements Parcelable {

    public static final Creator<Repo> CREATOR = new Creator<Repo>() {
        public Repo createFromParcel(Parcel source) {
            return new Repo(source);
        }

From source file ca.frozen.rpicameraviewer.classes.Source.java

public class Source implements Comparable, Parcelable {
    // local constants
    private final static String TAG = "Source";

    // instance variables
    public ConnectionType connectionType;

From source file org.imaginationforpeople.android2.model.Picture.java

public class Picture implements Parcelable {
    private int id;
    private String author;
    private String created;
    private String desc;
    private String license;

From source file com.cuddlesoft.norilib.SearchResult.java

/**
 * Search result received from the API.
 */
public class SearchResult implements Parcelable {
    // Parcelables are the standard Android serialization API used to retain data between sessions.
    /** Class loader used when deserializing from a {@link Parcel}. */

From source file it_minds.dk.eindberetningmobil_android.models.GPSCoordinateModel.java

/**
 * GPSCoordinateModel
 */
public class GPSCoordinateModel implements Parcelable {
    private double Latitude;
    private double Longitude;

From source file com.tigerpenguin.places.model.AspectRating.java

public class AspectRating extends JsonModel implements Parcelable {

    @JsonProperty(TYPE)
    private AspectType aspectType;

    @JsonProperty(RATING)