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
Create your custom object and implement Serializable. Next, you can use intent.putExtra("package.name.example", ).
intent.putExtra("package.name.example", )
In the second activity, you read it using getIntent().getSerializableExtra("package.name.example")
getIntent().getSerializableExtra("package.name.example")
Otherwise, follow this and this page.