Reputation: 101
I would like to ask if i can start an activity from SmsManager especially from sendTextMessage() or if i can use the context.sendBroadcast() function. I would like somehow to send a custom intent when i try to send a message.
Can i do something about this.
Upvotes: 0
Views: 88
Reputation: 401
I'm sorry, but it's somewhat unclear what you are actually trying to accomplish. sendTextMessage simply sends a text message. What could adding an extra intent or broadcast to that process achieve?
Why would you want to start an activity "from" sendTextMessage()? Why not just send the text message, and then start the new activity afterward?
Upvotes: 1