Reputation: 139
I am new to android, i want to as start an activity when i receive an sms on a particular port on android phone, my questions are:
Q1: how can i receive sms on a specific port?
Q2: how can i start an activity (UI) after receiving and parsing the sms?
Upvotes: 1
Views: 1274
Reputation: 23169
This can be done with an IntentReceiver
.
Here's a good article http://www.anddev.org/recognize-react_on_incoming_sms-t295.html
Upvotes: 1