I'm trying to write an app like a memo. First here is a listView in the A_activity. And I have second activity named B_activity to do the memo. I put a button in the A_activity and use it to Add a memo. So, I use intent to switch A_activity to B_activity.
Now here is the problem:
I use the same way to switch B_activity back to A_activity with a bundle stored the values.
I want the result is the listView would add a memo I just create and the old memo will remain.
But all failed.
I know how to do but dont know how to write the code.
Can someone give me some example?