I use code from http://mobiforge.com/developing/story/sms-messaging-android as reference.
I added scrollview and it show the append text upon sms send out.
however i have problem append incoming sms text in the same scrollview.
how can i solve it? do i need to use thread, service?
Use a Broadcast Receiver to Hook onto incomming SMS….Fire an Intent (with SMS Body as an Extra) to Trigger your Activity (your link will help with that)…in the
onStart()oronNewIntent()you grab the Extra and update your UI…Another Method would be to use a
ContentObserverforcontent://sms/but that’s advised against unless your sure the Messaging App will intercept the SMS.Untested Code!
In your Activity…In
onStart()oronNewIntent()