Android: SMS and MMS Project

328 views Asked by At

I'm newbie in Android development and I have some questions to afford a new project.

The app must send and receive SMS and MMS to store then in a remote database through a WebService.

I need structure the project but I'm not sure what kind of components (activities, services, content providers or broadcast receivers) I will need to develop this functions.

For example: I know the existence of Intent-filters but I'm not sure if it will running if the application is closed and it's better a service to check for new sms/mms.

¿How would you design that?

Thanks!

1

There are 1 answers

3
Barun On

I hope you have done with the xml file.Now in Activity class use http://www.mkyong.com/android/how-to-send-sms-message-in-android/ to send sms using smsmanager API.

Also for using remote database you need an api to call that database and there you have to use asyncTask to send that data methods