Hi!
Since Intent.putextra doesn't accept Cursor, what is the alternative
to pass a complex structure to a class?
For instance:
Cursor c; // assigned elsewhere
...
Intent myIntent = new Intent(this, my.class);
myIntent.putExtra("mycursor", c); // this won't work :-(
startActivity(myIntent);
... in my.java:
public my my extends Activity {
...
If the cursor is very complex, it will be a pain to mention each and
every item using putExtra (and then again in the receiving Activity).
Thanks in advance!
--
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
To unsubscribe, reply using "remove me" as the subject.