Skip to content

Commit

Permalink
Fix BadParcelableException bug (#5)
Browse files Browse the repository at this point in the history
  • Loading branch information
h6ah4i committed May 21, 2015
1 parent 5628cd0 commit 1cf8050
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -635,6 +635,7 @@ public int describeContents() {

@Override
public void writeToParcel(Parcel dest, int flags) {
super.writeToParcel(dest, flags);
dest.writeFloat(shadowTranslationZ);
dest.writeFloat(shadowElevation);
dest.writeByte((byte) (affectsDisplayedPosition ? 1 : 0));
Expand Down

0 comments on commit 1cf8050

Please sign in to comment.