Hello,
In my current project I have a full screen TabActivity. Each tab content is handled by two instances of same ListActivity. Now, I put an extra int in intent to know which data should be displayed. So in onCreate method of my ListActivity, I check the int in extra and I build my query to obtain a SQLLiteCursor.
I would like to dynamycally give to this two instances of ListActivity the list of item that should be displayed.
I do not know what is the best way to do this. Any idea ?
Regards,