I'm creating a basic text messaging UI for Android. I'm using an ArrayList<String> adapter to store the different numbers I have sent a message to. Each item in this list view opens a new view that has all the sent messages to that number.
The problem is I can only figure out how to do this using a static variable for the message. Therefore every time I send a message it updates it in every one of the conversations. Is there anyway I can get it to update the messages individually for each different number?