Hello sommeralex,
let me quote the SDK-Documentation:
Object android.content.Intent.getExtra(String name)
public Object getExtra(String name)
Retrieve extended data from the intent.
Parameters
name The name of the desired item.
Returns
the value of an item that previously added with putExtra() or null if none was found.
See Also
getExtra(String, Object)
putExtra(String, Object)
You see that it refers to the method "
putExtra(String, Object)" *cheer*.
Don't start searching, it does not exist
You'll have to use so called
Parcelables (Interface), to write complex objects.
Like described here:
http://www.anddev.org/viewtopic.php?p=3875#3875
BUT: Parcelable currently do not work with the Eclipse plugin

(untested but foudn in the SDK-documentation)
Maybe it changed with now works with
m5
Regards,
plusminus