I have a Tab Interface with two separate activities, lets call them ActA and ActB. Both of these activities can launch a custom Dialog, and I would like to have a button within this dialog call a method of ActBs, (ActB is a ListView of a database, and the method in question is to fill the list, basically refresh). How could I have the dialog box activity reference ActB to call its method? Thanks!
EDIT: I'll give some more details. I worked this program off of Google's Notepad tutorial which teaches about SQLite DBs. I took that and split it into two activities, one for creating the entries, and then saving them (ActA); and another for viewing the entries (ActB). Now, more recently, I put those activities in tabs rather than accessing them through the phone's menu key. Unfortunately, this appears to have stopped the ListActivity from calling its "fillData()" method.