Hello Forum!
I have 2 activities.
In Activity A I have a table (customers) from the full SQLite and 4 buttons (Add, Edit, Delete, Exit)
Activity.RemoveAllViews
Activity.LoadLayout ("A")
LlenarTabla (code where I fill the table from the SQLite)
Activity B (one customer record) is called by the Add, Modify, Delete Activity A.
For example, when I need to update a table data, call activity B and do the following:
Activity.RemoveAllViews
Activity.LoadLayout ("B")
Now when I want to accept or cancel to return to the table of Activity A and do the following:
Activity.RemoveAllViews
Activity.LoadLayout ("A")
But the table is empty I would have to call the LlenarTabla routine.
What I want to achieve is to call Activity B from A without losing the data in A and so when I return from the B do not have to fill the table again.
I hope you could explain me, thank you and await your responses.