I\'ve implemented my class with serializable, but it still didn\'t work.
This is my class:
package com.ursabyte.thumbnail; import java.io.Serializab
1- You are using android.graphics.Bitmap which doesn't implements Serializable class so you have to remove that class then it will work.
2- for brief you can visit how to pass data between intents.