I have a class which has implemented Parcelable. Can I do something like the following to create a new instance of a class?:
Foo foo = new Foo(\"a\", \"b\", \"c\
Yes, assuming that your parcel implementation correctly writes and reads all of the variables in Foo, that should create a clone.