I’m trying to develop an application that allows users to chat with each other via sms..
I created an activity that sends and receives sms, but I don’t know how can I make their chatting moving up (as in SMS messages in iPhone it seems like chatting page),
All I did is make the msg in edit text and receives it in textview …
actually i don’t know what’s the name of this thing to make search …
can anyone inform me what’s the name of this technique!!!
I’m really confused =’.
What I would probably do in your case is implement the chat history as a
ListView, sorted by entry timestamp. When you send or receive new messages, just add them via yourContentProviderand tell theListViewto scroll to the bottom position. It’s a more code, but examples exist, and it’s more flexible than hacking up aTextView.