Ok so in my application I have a DBAdapter class, that does its job well. In the main Activity, I have a variable this.dbAdapter
. I would like to share this variable with other Activites, so I don't have to create a new DBAdapter in each Activity.
How would be the best way of doing this? Should I do something like intent.putExtra("DbAdapter", this.dbAdapter);
? Or is there another way that I should go about it?
Thanks!