I have list of conversations, and messenger UI.. what I want is: When an item of the list of conversations clicked, the messenger UI appear with that specific conversation messages.. my attempt: Until now I haven't code this part, I just look for an idea,is it good Idea to save each message immediately to DB, and when I navigate between the conversations I drop the appropriate messages?
navigate between conversations and see previous messages
125 Views Asked by EsmaeelQash At
2
Recently I've been working in something similar. For achieving this I've used a TabHost, with a FrameLayout associated to each one that might be converted to a TextView, which is what I suppose you want.
This approach has a handicap: You can access just to the currently opened tab's view (in this case, a TextView). If you don't plan to add text to an inactive tab, you don't need to do anything further as TabHost handles each tab's previous messages. But for instance, if you want to add messages to an inactive tab, you have to store them first in a queue and once the tab is activated, process them with an OnTabChangedListener event.
That's my definition for the TabHost structure:
If you need to process events on a tabchange, you should have something like this:
You should also be aware of controlling the buffer of each tab. That is, control that each tab doesn't have more than X messages, as if it grows without control your app may start being irresponsive.
These links might help you as they did to me when I was programming this part:
https://gist.github.com/jerolimov/618086
http://androidituts.com/android-tab-layout-example/
http://learnandroideasily.blogspot.com.es/2013/07/android-tabwidget-example.html